
5 Dec
2004
5 Dec
'04
11:45 p.m.
Hi! Let's consider this function object: template<typename TLeft, typename TRight> struct mixed_plus : public binary_function<TLeft, TRight, TLeft> { result_type operator() (first_argument_type left, second_argument_type right) const { return left + right; } };