core :: MapKeysIterator :: defaultinit
core :: MapKeysIterator :: original_iterator
The original iteratorcore :: MapKeysIterator :: original_iterator=
The original iteratorcore $ MapKeysIterator :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
core :: Object :: defaultinit
core :: Iterator :: defaultinit
core :: MapKeysIterator :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
Iterator
whose elements are sorted by the function
core :: MapKeysIterator :: original_iterator
The original iteratorcore :: MapKeysIterator :: original_iterator=
The original iteratorcore :: Object :: output_class_name
Display class name on stdout (debug only).
# Iterator on a 'keys' point of view of a map
class MapKeysIterator[K, V]
super Iterator[K]
# The original iterator
var original_iterator: MapIterator[K, V]
redef fun is_ok do return self.original_iterator.is_ok
redef fun next do self.original_iterator.next
redef fun item do return self.original_iterator.key
end
lib/core/collection/abstract_collection.nit:809,1--818,3