iter_move(std::basic_const_iterator<Iter>)
Min standard notice:
Casts the result of dereferencing the underlying iterator to its associated const rvalue reference type.
# Declarations
friend constexpr /*rvalue-reference*/
iter_move( const basic_const_iterator& i ) noexcept(/* see below */);
(since C++23)
# Return value
An rvalue reference to const, or a prvalue.
# Example
This section is incompleteReason: no example