Actually it is a wrapper around an iterator of the internal array of the map.
core :: CoupleMapIterator :: defaultinit
core $ CoupleMapIterator :: 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 :: CoupleMapIterator :: defaultinit
core :: MapIterator :: 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.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).core :: MapIterator
Iterators for Map.
# Iterator on CoupleMap
#
# Actually it is a wrapper around an iterator of the internal array of the map.
private class CoupleMapIterator[K, V]
super MapIterator[K, V]
redef fun item do return _iter.item.second
#redef fun item=(e) do _iter.item.second = e
redef fun key do return _iter.item.first
redef fun is_ok do return _iter.is_ok
redef fun next
do
_iter.next
end
var iter: Iterator[Couple[K,V]]
end
lib/core/collection/abstract_collection.nit:1299,1--1318,3