EDIT The explicit <int> type qualification is necessary in the above code. Type inference only works for function calls, not for instance creation. However, it can often be omitted by employing a make helper function. This is done in the STL for pairs:
template <typename T1, typename T2>pair<T1, T2> make_pair(T1 const& first, T2 const& second) { return pair<T1, T2>(first, second);// Implied types:pair<int, float> pif = make_pair(1, 1.0f);Someone mentioned in the comments that functors are sometimes called “functionoids”. Yesish – but not quite. In fact, “functor” is a (somewhat weird) abbreviation for “function object”. A functionoid is conceptually similar but realized by employing virtual functions (although they are sometimes used synonymously). For example, a functionoid could look like this (along with its necessary interface definition):
template <typename T, typename R>struct UnaryFunctionoid { virtual R invoke(T const& value) const = 0;struct IsEvenFunction : UnaryFunctionoid<int, bool> { bool invoke(int const& value) const { return value % 2 == 0; }// call it, somewhat clumsily:UnaryFunctionoid const& f = IsEvenFunction();f.invoke(4); // trueOf course, this loses any performance advantage that a functor has because of its virtual function call. It is therefore used in a different context that actually requires a polymorphic (stateful) runtime function.
The C++ FAQ has more to say on this subject.
