
16 May
2008
16 May
'08
10:45 a.m.
On Fri, May 16, 2008 at 12:25 AM, Daniel Walker <daniel.j.walker@gmail.com> wrote:
If the overload_set were instead based on polymorphic_function, then after loading add_int for integers, you only need to specify plus once to handle all other types.
overload_set< mpl::vector<int(int,int), plus(_1,_1)>
add(add_ints, plus);
This is fundamentally different