ValueIterator()

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

Constructor.

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

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

Constructor.

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

ValueIterator::ValueIterator(ValueIterator&&) constructor

Move constructor.

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

Arguments

ParameterTypeDescription
otherValueIterator&&Iteratro to move data from.

See Also