core :: IteratorDecorator :: defaultinit
core $ IteratorDecorator :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
core :: Iterator :: defaultinit
core :: IteratorDecorator :: defaultinit
core :: Object :: 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 :: Object :: output_class_name
Display class name on stdout (debug only).
# A basic helper class to specialize specific Iterator decorators
abstract class IteratorDecorator[E]
super Iterator[E]
# The underling iterator
protected var real: Iterator[E]
redef fun is_ok do return real.is_ok
redef fun item do return real.item
redef fun finish do real.finish
redef fun next do real.next
redef fun next_by(step) do real.next_by(step)
end
lib/core/collection/abstract_collection.nit:287,1--299,3