any.any

Returns true if and only if _any value v found in the input range range satisfies the predicate pred. Performs (at most) O(range.length) evaluations of pred.

template any(alias pred = "a")
bool
any
(
Range
)
(
Range range
)
if (
isInputRange!Range &&
is(typeof(unaryFun!pred(range.front)))
)

Meta

Suggestion Box / Bug Report