| 38 | // |
| 39 | template <class U> |
| 40 | object_slice |
| 41 | object_operators<U>::slice(object_cref start, object_cref finish) |
| 42 | { |
| 43 | object_cref2 x = *static_cast<U*>(this); |
| 44 | return object_slice(x, api::slice_key(borrowed(start.ptr()), borrowed(finish.ptr()))); |
| 45 | } |
| 46 | |
| 47 | template <class U> |
| 48 | const_object_slice |
nothing calls this directly
no test coverage detected