The OpenD Programming Language

any.any

template any(alias pred = "a")
static if(__traits(isSame, naryFun!pred, pred))
bool
any
(
Slices...
)
(
Slices slices
)
if (
(
Slices.length == 1 ||
!__traits(isSame, pred, "a")
)
&&
Slices.length
)

Parameters

slices Slices

One or more slices, ranges, and arrays.

Return Value

Type: bool

true if the search was successful and false otherwise. Constraints: All slices must have the same shape.

Meta