package haxe.iterators
.. | |
---|---|
ArrayIterator | This iterator is used only when |
ArrayKeyValueIterator | |
DynamicAccessIterator | This iterator can be used to iterate over the values of |
DynamicAccessKeyValueIterator | This Key/Value iterator can be used to iterate over |
HashMapKeyValueIterator | |
MapKeyValueIterator | This Key/Value iterator can be used to iterate across maps. |
RestIterator | |
RestKeyValueIterator | |
StringIterator | This iterator can be used to iterate over char codes in a string. |
StringIteratorUnicode | This iterator can be used to iterate across strings in a cross-platform way. It handles surrogate pairs on platforms that require it. On each iteration, it returns the next character code. |
StringKeyValueIterator | This iterator can be used to iterate over char indexes and char codes in a string. |
StringKeyValueIteratorUnicode | This iterator can be used to iterate across strings in a cross-platform way. It handles surrogate pairs on platforms that require it. On each iteration, it returns the next character offset as key and the next character code as value. |