| 2844 | strided_ptr operator++(int) noexcept { strided_ptr temp = *this; ++(*this); return temp; } |
| 2845 | strided_ptr &operator--() noexcept { data_ -= stride_; return *this; } |
| 2846 | strided_ptr operator--(int) noexcept { strided_ptr temp = *this; --(*this); return temp; } |
| 2847 | strided_ptr &operator+=(difference_type offset) noexcept { data_ += offset * stride_; return *this; } |
| 2848 | strided_ptr &operator-=(difference_type offset) noexcept { data_ -= offset * stride_; return *this; } |
| 2849 | strided_ptr operator+(difference_type offset) const noexcept { strided_ptr temp = *this; return temp += offset; } |
nothing calls this directly
no outgoing calls
no test coverage detected