KeyIterator()

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

Constructor.

System::Collections::Generic::KeyIterator<Dict>::KeyIterator(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.

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

Constructor.

System::Collections::Generic::KeyIterator<Dict>::KeyIterator(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.

KeyIterator::KeyIterator(KeyIterator&&) constructor

Move constructor.

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

Arguments

ParameterTypeDescription
otherKeyIterator&&Iterator to move data from.

See Also