24.3.1 Predicates
A function that has no side-effects and returns true/false
Often created using function objects
bool is_even(int val) { return 0 == val % 2; }
prev
|
top
|
next