std::experimental::ranges::tagged<Base,Tags...>:: tagged
|
using
Base
::
Base
;
|
(1) | |
|
tagged
(
)
=
default
;
|
(2) | |
|
tagged
(
tagged
&&
that
)
=
default
;
|
(3) | |
|
tagged
(
const
tagged
&
that
)
=
default
;
|
(4) | |
|
tagged
(
Base
&&
that
)
noexcept
(
std::
is_nothrow_move_constructible
<
Base
>
::
value
)
erfordert MoveConstructible < Base > ; |
(5) | |
|
tagged
(
const
Base
&
that
)
noexcept
(
std::
is_nothrow_copy_constructible
<
Base
>
::
value
)
erfordert CopyConstructible < Base > ; |
(6) | |
|
template
<
class
Other
>
erfordert Constructible
<
Base, Other
>
|
(7) | |
|
template
<
class
Other
>
erfordert Constructible
<
Base,
const
Other
&
>
|
(8) | |
Konstruiert ein
tagged
Objekt.
tagged<Base, Tags...>
erbt die Konstruktoren von
Base
.
tagged
verfügt über standardmäßig bereitgestellte Standard-, Kopier- und Verschiebekonstruktoren, die den entsprechenden Konstruktor von
Base
aufrufen.
Base
. Initialisiert das
Base
-Subobjekt mit
std
::
move
(
that
)
.
Base
. Initialisiert das
Base
-Subobjekt mit
that
.
tagged
Spezialisierung mit übereinstimmenden Tags. Initialisiert das
Base
Unterobjekt mit
static_cast
<
Other
&&
>
(
that
)
.
tagged
Spezialisierung mit übereinstimmenden Tags. Initialisiert das
Base
Unterobjekt mit
static_cast
<
const
Other
&
>
(
that
)
.