MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / operator++

Function operator++

Source/external/json.hpp:13152–13157  ·  view source on GitHub ↗

! @brief post-increment (it++) @pre The iterator is initialized; i.e. `m_object != nullptr`. */

Source from the content-addressed store, hash-verified

13150 @pre The iterator is initialized; i.e. `m_object != nullptr`.
13151 */
13152 iter_impl operator++(int)& // NOLINT(cert-dcl21-cpp)
13153 {
13154 auto result = *this;
13155 ++(*this);
13156 return result;
13157 }
13158
13159 /*!
13160 @brief pre-increment (++it)

Callers 2

operator++Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected