Implementation of an iterator helper for Python. More...


Public Member Functions | |
| _.Library.Boolean | __contains__ (_.Library.Any item) | 
| Check to see if this iterator contains the following.  | |
| _.SYS.Python.IteratorHelper | __iter__ () | 
| Allows an "iterator on an iterator", note that it does NOT reset then "index" it just continues on and this doesn not "clone", it's a reference as per Python behavior.  | |
| _.Library.Integer | __len__ () | 
| Return the length of the iterable collection (if known)  | |
| _.Library.String | __next__ () | 
| Python iterator implementation.  | |
Private Member Functions | |
| _.Library.Status | OnNew (_.Collection.AbstractIterator iter, _.Library.String mode) | 
| Initialize this iterator helper.  | |
Implementation of an iterator helper for Python.