core :: MapValuesIterator :: defaultinit
core :: MapValuesIterator :: original_iterator
The original iteratorcore :: MapValuesIterator :: original_iterator=
The original iteratorcore $ MapValuesIterator :: 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 :: MapValuesIterator :: 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 :: MapValuesIterator :: original_iterator
The original iteratorcore :: MapValuesIterator :: original_iterator=
The original iteratorcore :: Object :: output_class_name
Display class name on stdout (debug only).
# Iterator on a 'values' point of view of a map
class MapValuesIterator[K, V]
super Iterator[V]
# 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.item
end
lib/core/collection/abstract_collection.nit:820,1--829,3