11 Jul
2008
11 Jul
'08
7:44 p.m.
Any thoughts on how to bind some arguments for a function?
Consider the following:
struct A
{
double operator()( const double a, const double b, const double c )
const
{
return a+b+c;
}
};
int main()
{
typedef function