MCPcopy Create free account
hub / github.com/ashvardanian/less_slow.cpp / operator--

Method operator--

less_slow.cpp:2846–2846  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected