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
)
requires MoveConstructible < Base > ; |
(5) | |
|
tagged
(
const
Base
&
that
)
noexcept
(
std::
is_nothrow_copy_constructible
<
Base
>
::
value
)
requires CopyConstructible < Base > ; |
(6) | |
|
template
<
class
Other
>
requires Constructible
<
Base, Other
>
|
(7) | |
|
template
<
class
Other
>
requires Constructible
<
Base,
const
Other
&
>
|
(8) | |
Construye un objeto
tagged
.
tagged<Base, Tags...>
hereda los constructores de
Base
.
tagged
tiene constructores por defecto, de copia y de movimiento predeterminados que invocan el constructor correspondiente de
Base
.
Base
. Inicializa el subobjeto
Base
con
std
::
move
(
that
)
.
Base
. Inicializa el subobjeto
Base
con
that
.
tagged
con etiquetas coincidentes. Inicializa el subobjeto
Base
con
static_cast
<
Other
&&
>
(
that
)
.
tagged
diferente con etiquetas coincidentes. Inicializa el subobjeto
Base
con
static_cast
<
const
Other
&
>
(
that
)
.