Condition<T> typedef
Takes an element and defines a condition, then returns true
if the element
satisfies the condition and false
otherwise.
Implementation
typedef bool Condition<T>(T element);
Takes an element and defines a condition, then returns true
if the element
satisfies the condition and false
otherwise.
typedef bool Condition<T>(T element);