all

Undocumented in source. Be warned that the author may not have intended to support it.
bool
all
(
alias Func
Range
)
(
Range r
)

Examples

import libd.datastructures : LinkedList;
LinkedList!int list;
list.put(0, 1, 2, 3, 4, 5, 6);
assert(list.range.all!(n => n < 10));
assert(!list.range.all!(n => (n % 2) == 0));

Meta