Array.opBinary

struct Array(T)
Array!bool
opBinary
(
string op
Stuff
)
(
Stuff rhs
)
if (
op == "~"
)
if (
is(immutable T == immutable bool)
)

Return Value

Type: Array!bool

A new array which is a concatenation of this and its argument.

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

Meta