| 80 | |
| 81 | struct FunctionObj { |
| 82 | FunctionObj(int data_, bool fail_) : data(data_), fail(fail_) { } |
| 83 | SEXP operator() () { |
| 84 | NumericVector x = maybeThrow(&fail); |
| 85 | x[0] = x[0] * data; |
nothing calls this directly
no outgoing calls
no test coverage detected