| 30 | public: |
| 31 | typedef RESULT_TYPE (*FunPtr)(U1) ; |
| 32 | SugarBlock_1( FunPtr ptr_, const T1 & vec_) : ptr(ptr_), vec(vec_){} |
| 33 | |
| 34 | inline RESULT_TYPE operator[]( R_xlen_t i) const { |
| 35 | return ptr( vec[i] ) ; |
nothing calls this directly
no outgoing calls
no test coverage detected