Constructors
| 41 | |
| 42 | // Constructors |
| 43 | StridedIterator() = default; |
| 44 | |
| 45 | explicit StridedIterator(T* ptr, int64_t stride, difference_type offset = 0) |
| 46 | : stride_(stride), ptr_(ptr + offset * stride) {} |
nothing calls this directly
no outgoing calls
no test coverage detected