core :: MapIterator :: next
Require is_ok
.
# Jump to the next item.
# Require `is_ok`.
fun next is abstract
lib/core/collection/abstract_collection.nit:778,2--780,21
redef fun next
do
assert is_ok
_node = _node._next_item
end
lib/core/collection/hash_collection.nit:405,2--409,4