Tuple.opBinary

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)
    struct Tuple
    opBinary
    (
    string op
    T
    )
    (
    auto ref T t
    )
    if (
    op == "~"
    )
  2. auto opBinaryRight(T t)

Parameters

t T

The Tuple to concatenate with

Return Value

Type: auto

A concatenation of this tuple and t

Meta