Namespaces
Variants

std::experimental::ranges::tagged<Base,Tags...>:: operator=

From cppreference.net
tagged & operator = ( tagged && that ) = default ;
(1)
tagged & operator = ( const tagged & that ) = default ;
(2)
template < class Other >

requires Assignable < Base & , Other >
constexpr tagged & operator = ( ranges:: tagged < Other, Tags... > && that )

noexcept ( std:: is_nothrow_assignable < Base & , Other > :: value ) ;
(3)
template < class Other >

requires Assignable < Base & , const Other & >

constexpr tagged & operator = ( const ranges:: tagged < Other, Tags... > & that ) ;
(4)
template < class U >

requires Assignable < Base & , U > && ! Same < std:: decay_t < U > , tagged >

constexpr tagged & operator = ( U && that ) noexcept ( std:: is_nothrow_assignable < Base & , U > :: value ) ;
(5)

that の内容を * this に代入します。

1,2) tagged は、デフォルト化されたコピーおよびムーブ代入演算子を持ち、それらは Base の対応する代入演算子を呼び出します。
3) 一致するタグを持つ異なる tagged 特殊化からのムーブ代入の変換。 static_cast < Base & > ( * this ) = static_cast < Other && > ( that ) ; と等価。
4) 一致するタグを持つ異なる tagged 特殊化からのコピー代入の変換。 static_cast < Base & > ( * this ) = static_cast < const Other & > ( that ) ; と同等。
5) Base サブオブジェクトに that を代入する。 static_cast < Base & > ( * this ) = std:: forward < U > ( that ) ; と等価。

戻り値

* this .