![]() |
AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
|
Forward iterator. More...
Inheritance diagram for aud.SList< T >.Iterator:
Collaboration diagram for aud.SList< T >.Iterator:Public Member Functions | |
| boolean | hasNext () |
return true unless "advanced" over tail More... | |
| T | next () |
| return current entry and advance More... | |
| void | remove () |
| not implemented More... | |
| boolean | equals (Object other) |
Forward iterator.
Definition at line 245 of file SList.java.
| boolean aud.SList< T >.Iterator.equals | ( | Object | other | ) |
Definition at line 281 of file SList.java.
| boolean aud.SList< T >.Iterator.hasNext | ( | ) |
return true unless "advanced" over tail
Definition at line 254 of file SList.java.
| T aud.SList< T >.Iterator.next | ( | ) |
return current entry and advance
Definition at line 262 of file SList.java.
| void aud.SList< T >.Iterator.remove | ( | ) |
not implemented
| UnsupportedOperationException |
Definition at line 275 of file SList.java.