Lines Matching defs:pred
32 // Functions of the form (in, pred)
33 auto in_pred = [&](auto func, auto pred) {
34 (void)func(it, it, pred);
35 (void)func(in, pred);
36 (void)func(it, it, pred, projection);
37 (void)func(in, pred, projection);
40 // Functions of the form (in, in, pred)
41 auto in_in_pred = [&](auto func, auto pred) {
42 (void)func(it, it, it, it, pred);
43 (void)func(in, in, pred);
44 (void)func(it, it, it, it, pred, projection);
45 (void)func(in, in, pred, projection);