#include <arraymap.h>
Public Types | |
using | Super = AutoIterator< ArrayType > |
Public Types inherited from AutoIterator< ArrayType > | |
using | Iterator = typename GetIteratorType< ArrayType >::type |
using | CollectionType = typename GetCollectionType< ArrayType >::type |
using | ValueType = decltype(*std::declval< Iterator >()) |
using | ResultFunctions = ResultIteratorFunctions< SUPER > |
using | InvConstAutoIterator = AutoIterator< typename ConstIf< typename std::remove_const< ArrayType >::type, !STD_IS_REPLACEMENT(const, ArrayType)>::type > |
Public Types inherited from ForEachIterator< ITERATOR, SUPER > | |
using | IsForEachIterator = std::true_type |
Additional Inherited Members | |
Static Public Member Functions inherited from ForEachIterator< ITERATOR, SUPER > | |
static MAXON_ATTRIBUTE_FORCE_INLINE | PRIVATE_MAXON_RBF_SENTINEL (Wrapper) end() |
Protected Member Functions inherited from AutoIterator< ArrayType > | |
MAXON_ATTRIBUTE_FORCE_INLINE | AutoIterator (const Iterator &s, const Iterator &e, Bool removed) |
Protected Attributes inherited from AutoIterator< ArrayType > | |
Iterator | _it |
Iterator | _end |
using Super = AutoIterator<ArrayType> |
NonConstIteratorBase | ( | ArrayMap & | m, |
Int | s | ||
) |
NonConstIteratorBase | ( | const NonConstIteratorBase & | src | ) |
Removes eraseCnt
elements from the map starting at the position given by this iterator. Afterwards, this iterator will point to the element behind the last removed element.
[in] | map | Map of this iterator. |
[in] | eraseCnt | Number of elements to remove. |
Modifies the key of the map entry pointed to by this iterator. This operation is only supported by sorted array maps. The new key must be in a range such that this operation doesn't change the order, i.e., it must be above the key of the previous entry and below the key of the next entry.
[in] | map | Map of this iterator. |
[in] | newKey | New value for the key of the current map entry. |