The predicate that the range should be partitioned by.
The range to check.
true if r is partitioned according to predicate pred.
int[] r = [ 1, 3, 5, 7, 8, 2, 4, ]; assert(isPartitioned!"a & 1"(r));
See Implementation