The OpenD Programming Language

equal.equal

template equal(alias pred = "a == b")
@safe
static if(__traits(isSame, naryFun!pred, pred))
bool
equal
(
Slices...
)
(
Slices slices
)
if (
Slices.length >= 2
)

Parameters

slices Slices

Two or more ndslices, ranges, and arrays.

Return Value

Type: bool

true any of the elements verify pred and false otherwise.

Meta