iter_move(std::basic_const_iterator<Iter>)

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

# See also