#include <function.hpp>
Definition at line 277 of file function.hpp.
| def_function_3_rep | ( | D(*)(S1, S2, S3) | fun2 | ) | [inline] |
Definition at line 279 of file function.hpp.
| D apply | ( | S1 | x1, | |
| S2 | x2, | |||
| S3 | x3 | |||
| ) | [inline, virtual] |
Implements function_3_rep< D, S1, S2, S3 >.
Definition at line 281 of file function.hpp.
References def_function_3_rep< D, S1, S2, S3 >::fun.
00281 { 00282 return fun (x1, x2, x3); }
| D(* fun)(S1, S2, S3) |
Referenced by def_function_3_rep< D, S1, S2, S3 >::apply().
1.6.1