Documentation
Dlang.org
SumType.this
sumtype
SumType
Constructs a
SumType
that's a copy of another
SumType
.
this
(T value)
this
(const(T) value)
this
(immutable(T) value)
this
(Value value)
this
(inout(SumType) other)
struct
SumType
(Types...)
inout
static if
(
anySatisfy!(hasElaborateCopyConstructor, Types)
)
static if
(
allSatisfy!(isCopyable, Map!(InoutOf, Types)) && !anySatisfy!(hasPostblit, Map!(InoutOf, Types)) && allSatisfy!(isInout, Map!(InoutOf, Types))
)
this
(
ref
inout
(
SumType
)
other
)
if
(
is
(
NoDuplicates
!
Types
==
Types
) &&
Types.length
> 0
)
this
(SumType other)
this
(const(SumType) other)
this
(immutable(SumType) other)
Meta
Source
See Implementation
sumtype
SumType
aliases
Types
constructors
this
destructors
~this
functions
opAssign
opEquals
toHash
toString
typeIndex
Constructs a SumType that's a copy of another SumType.