Untitled
unknown
plain_text
2 years ago
333 B
8
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