friend constexpr decltype(auto) iter_move( const /*iterator*/& i ) noexcept( /*see below*/ ); | (since C++20) |
Casts the result of dereferencing the underlying iterator i.inner_
to its associated rvalue reference type.
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when join_view::iterator<Const>
is an associated class of the arguments.
i | - | iterator |
Equivalent to: ranges::iter_move(i.inner_)
.
noexcept
specification: noexcept(noexcept(ranges::iter_move(i.inner_)))
(C++20) | casts the result of dereferencing an object to its associated rvalue reference type (customization point object) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/join_view/iterator/iter_move