Tuple.opBinaryRight

Concatenate Tuples. Tuple concatenation is only allowed if all named fields are distinct (no named field of this tuple occurs in t and no named field of t occurs in this tuple).

  1. auto opBinary(T t)
  2. auto opBinaryRight(T t)
    struct Tuple
    opBinaryRight
    (
    string op
    T
    )
    (
    auto ref T t
    )
    if (
    op == "~" &&
    !(
    is(T : U[],
    U
    ) &&
    )
    )

Parameters

t T

The Tuple to concatenate with

Return Value

Type: auto

A concatenation of this tuple and t

Meta

Suggestion Box / Bug Report