Untitled
unknown
plain_text
a year ago
333 B
5
Indexable
public void removeIterator() { if (isOffset()) { throw exception(); } else { if (iterator.prev != null) { iterator.prev.next = iterator.next; } if (iterator.next != null) { iterator.next.prev = iterator.prev; } iterator = null; length--; } }
Editor is loading...
Leave a Comment