std::move_sentinel<S>::operator=
提供: cppreference.com
<tbody>
</tbody>
template<class S2> requires std::assignable_from<S&, const S2&> constexpr move_sentinel& operator=(const std::move_sentinel<S2>& other); |
(C++20以上) | |
ベースとなる番兵が other のベースとなる番兵すなわち other.base() の値に代入されます。
引数
| other | - | 代入する番兵アダプタ |
戻り値
*this。
例
| This section is incomplete Reason: no example |
関連項目
| 別のイテレータを代入します ( std::move_iterator<Iter>のパブリックメンバ関数)
|