std::ranges::enumerate_view::iterator::base - cppreference.com (original) (raw)

Returns the underlying iterator. Let current_ be the underlying iterator.

  1. Equivalent to: return current_;.

  2. Equivalent to: return std::move(current_);.

[edit] Parameters

(none)

[edit] Return value

An iterator to the current element in enumerate_view.

[edit] Example