MCPcopy Create free account
hub / github.com/boostorg/filesystem / increment

Method increment

include/boost/filesystem/path.hpp:1129–1137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1127 bool equal(path_reverse_iterator const& rhs) const noexcept { return m_itr == rhs.m_itr; }
1128
1129 void increment()
1130 {
1131 --m_itr;
1132 if (m_itr != m_itr.m_path_ptr->begin())
1133 {
1134 path_iterator tmp = m_itr;
1135 m_element = *--tmp;
1136 }
1137 }
1138
1139 void decrement()
1140 {

Callers

nothing calls this directly

Calls 1

beginMethod · 0.45

Tested by

no test coverage detected