| 82 | inline const_iterator get_const() const { return const_iterator( const_proxy(*p, 0) ) ; } |
| 83 | |
| 84 | inline proxy ref() { check_index(0); return proxy(*p,0) ; } |
| 85 | inline proxy ref(R_xlen_t i) { check_index(i); return proxy(*p,i);} |
| 86 | |
| 87 | inline const_proxy ref() const { check_index(0); return const_proxy(*p,0) ; } |
no outgoing calls
no test coverage detected