Tuple.opAssign

Assignment from another Tuple.

struct Tuple
ref
opAssign
(
R
)
(
auto ref R rhs
)
if (
areCompatibleTuples!(typeof(this), R, "=")
)

Parameters

rhs R

The source Tuple to assign from. Each element of the source Tuple must be implicitly assignable to each respective element of the target Tuple.

Meta

Suggestion Box / Bug Report