| 37 | typedef Rcpp::VectorBase<CPLXSXP,NA,T> VEC_TYPE ; |
| 38 | |
| 39 | SugarComplex( FunPtr ptr_, const VEC_TYPE & vec_) : ptr(ptr_), vec(vec_){} |
| 40 | |
| 41 | inline RESULT_TYPE operator[]( R_xlen_t i) const { |
| 42 | Rcomplex x = vec[i] ; |
nothing calls this directly
no outgoing calls
no test coverage detected