BaseIterator
Direct Subclass:
Base class for STL-like iterators. It references a node (or index) and a container. Navigation is achieved by calling container's prev() and next() methods.
Constructor Summary
Public Constructor | ||
public |
constructor(node: *, container: *) |
Method Summary
Public Methods | ||
public |
equals(rhs: BaseIterator): boolean Two iterators are considered to be equal if they point to the same node of the same container |
Public Constructors
public constructor(node: *, container: *) source
Params:
Name | Type | Attribute | Description |
node | * | current node |
|
container | * | container |
Public Methods
public equals(rhs: BaseIterator): boolean source
Two iterators are considered to be equal if they point to the same node of the same container
Params:
Name | Type | Attribute | Description |
rhs | BaseIterator | object on the 'right-hand side' of .eq. operator |