SList.opBinaryRight

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)
opBinaryRight
(
string op
Stuff
)
(
Stuff lhs
)
if (
op == "~" &&
!is(typeof(lhs.opBinary!"~"(this)))
&&
is(typeof(SList(lhs)))
)
if (
!is(T == shared)
)

Meta