System::Collections::Generic::DictionaryIterator class

DictionaryIterator class

Dictionary iterator that provides KeyValuePair notation.

template<typename Dict>class DictionaryIterator : public System::Details::NativeIteratorWrapperBase<Dict::KeyValuePairType, Dict::map_t::const_iterator>,
                                                  private System::Details::IteratorPointerUpdater<Dict::KeyValuePairType, false>
ParameterDescription
DictDictionary class.

Methods

MethodDescription
CloneIterator() const overrideClones current iterator.
DecrementIterator() overrideMoves the iterator step back.
DictionaryIterator(typename Dict::map_t::const_iterator&&, typename Dict::map_t::const_iterator&&)Constructor.
DictionaryIterator(const typename Dict::map_t::const_iterator&, const typename Dict::map_t::const_iterator&)Constructor.
DictionaryIterator(DictionaryIterator&&)Move constructor.
IncrementIterator() overrideMoves the iterator step forward.
ShiftIteratorBy(std::ptrdiff_t) overrideMoves the iterator by the specified number of steps.
virtual ~DictionaryIterator()Destructor.

See Also