DictionaryIterator()

DictionaryIterator::DictionaryIterator(typename Dict::map_t::const_iterator&&, typename Dict::map_t::const_iterator&&) constructor

Constructor.

System::Collections::Generic::DictionaryIterator<Dict>::DictionaryIterator(typename Dict::map_t::const_iterator &&iterator, typename Dict::map_t::const_iterator &&end) noexcept

Arguments

ParameterTypeDescription
iteratortypename Dict::map_t::const_iterator&&Iterator to hold.
endtypename Dict::map_t::const_iterator&&Iterator to the end of the container.

DictionaryIterator::DictionaryIterator(const typename Dict::map_t::const_iterator&, const typename Dict::map_t::const_iterator&) constructor

Constructor.

System::Collections::Generic::DictionaryIterator<Dict>::DictionaryIterator(const typename Dict::map_t::const_iterator &iterator, const typename Dict::map_t::const_iterator &end)

Arguments

ParameterTypeDescription
iteratorconst typename Dict::map_t::const_iterator&Iterator to hold.
endconst typename Dict::map_t::const_iterator&Iterator to the end of the container.

DictionaryIterator::DictionaryIterator(DictionaryIterator&&) constructor

Move constructor.

System::Collections::Generic::DictionaryIterator<Dict>::DictionaryIterator(DictionaryIterator &&other) noexcept

Arguments

ParameterTypeDescription
otherDictionaryIterator&&Iteratro to move data from.

See Also