SList.opBinary

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

struct SList(T)
opBinary
(
string op
Stuff
)
(
Stuff rhs
)
if (
op == "~" &&
is(typeof(SList(rhs)))
)
if (
!is(T == shared)
)

Meta