| 53 | private: |
| 54 | |
| 55 | void check_index(R_xlen_t i) const { |
| 56 | #ifndef RCPP_NO_BOUNDS_CHECK |
| 57 | if (i >= size) { |
| 58 | warning("subscript out of bounds (index %s >= vector size %s)", i, size); // #nocov |
| 59 | } |
| 60 | #endif |
| 61 | } |
| 62 | |
| 63 | iterator start ; |
| 64 | R_xlen_t size ; |