Function Adapters
A function adapter is a function object that enables the combining of function objects with each other, with certain values, or with special function.
The expression bind2nd(greater
The following are the list of predefined function adapter classes in STL:
* bind1st(op, value) ==> op(value, param)
* bind2nd(op, value) ==> op(param, value)
* not1(op) ==> !op(param)
* not2(op) ==> !op(param1, param2)