MCPcopy Create free account
hub / github.com/boostorg/histogram / advance

Method advance

include/boost/histogram/axis/iterator.hpp:31–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29 void increment() noexcept { ++idx_; }
30 void decrement() noexcept { --idx_; }
31 void advance(int n) noexcept { idx_ += n; }
32 int distance_to(const iterator_over& other) const noexcept {
33 return other.idx_ - idx_;
34 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected