libstdc++
|
Public Member Functions | |
constexpr | move_sentinel (_Sent __s) noexcept(is_nothrow_move_constructible_v< _Sent >) |
template<typename _S2 > | |
requires constexpr convertible_to< const _S2 &, _Sent > | move_sentinel (const move_sentinel< _S2 > &__s) noexcept(is_nothrow_constructible_v< _Sent, const _S2 & >) |
constexpr _Sent | base () const noexcept(is_nothrow_copy_constructible_v< _Sent >) |
template<typename _S2 > | |
requires constexpr assignable_from< _Sent &, const _S2 & > move_sentinel & | operator= (const move_sentinel< _S2 > &__s) noexcept(is_nothrow_assignable_v< _Sent, const _S2 & >) |
A sentinel adaptor for use with std::move_iterator.
Definition at line 1366 of file bits/stl_iterator.h.