core :: RopeCharIteratorPiece :: _ldone
Was its _left child (if any) visited ?core :: RopeCharIteratorPiece :: _prev
The previous node in the list.core :: RopeCharIteratorPiece :: _rdone
Was its _right child (if any) visited ?core :: RopeCharIteratorPiece :: ldone
Was its _left child (if any) visited ?core :: RopeCharIteratorPiece :: ldone=
Was its _left child (if any) visited ?core :: RopeCharIteratorPiece :: node=
The encapsulated node of theRope
core :: RopeCharIteratorPiece :: prev
The previous node in the list.core :: RopeCharIteratorPiece :: prev=
The previous node in the list.core :: RopeCharIteratorPiece :: rdone
Was its _right child (if any) visited ?core :: RopeCharIteratorPiece :: rdone=
Was its _right child (if any) visited ?core $ RopeCharIteratorPiece :: SELF
Type of this instance, automatically specialized in every classcore :: RopeCharIteratorPiece :: _ldone
Was its _left child (if any) visited ?core :: RopeCharIteratorPiece :: _prev
The previous node in the list.core :: RopeCharIteratorPiece :: _rdone
Was its _right child (if any) visited ?core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
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.
core :: RopeCharIteratorPiece :: ldone
Was its _left child (if any) visited ?core :: RopeCharIteratorPiece :: ldone=
Was its _left child (if any) visited ?core :: Object :: native_class_name
The class name of the object in CString format.core :: RopeCharIteratorPiece :: node=
The encapsulated node of theRope
core :: Object :: output_class_name
Display class name on stdout (debug only).core :: RopeCharIteratorPiece :: prev
The previous node in the list.core :: RopeCharIteratorPiece :: prev=
The previous node in the list.core :: RopeCharIteratorPiece :: rdone
Was its _right child (if any) visited ?core :: RopeCharIteratorPiece :: rdone=
Was its _right child (if any) visited ?
# A simple linked list for use with iterators
private class RopeCharIteratorPiece
# The encapsulated node of the `Rope`
var node: String
# Was its _left child (if any) visited ?
var ldone: Bool
# Was its _right child (if any) visited ?
var rdone: Bool
# The previous node in the list.
var prev: nullable RopeCharIteratorPiece
end
lib/core/text/ropes.nit:320,1--330,3