| 210 | binary_call( Function fun) : call(fun, R_NilValue, R_NilValue), proxy1(call,1), proxy2(call,2){} |
| 211 | |
| 212 | RESULT_TYPE operator()( const T1& o1, const T2& o2 ){ |
| 213 | proxy1 = o1; |
| 214 | proxy2 = o2; |
| 215 | return as<RESULT_TYPE>( call.eval() ); |
| 216 | } |
| 217 | |
| 218 | private: |
| 219 | Language call; |