TotalContainer.opBinaryRight

Returns a new container that's the concatenation of this and its argument. opBinaryRight is only defined if Stuff does not define opBinary.

Complexity: O(n + m), where m is the number of elements in stuff

  1. bool opBinaryRight(KeyType k)
  2. TotalContainer opBinaryRight(Stuff lhs)
    struct TotalContainer(T)
    opBinaryRight
    (
    string op
    )
    (
    Stuff lhs
    )
    if (
    op == "~"
    )

Meta