MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / operator++

Function operator++

extern/json/json.hpp:13156–13161  ·  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

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

Callers 2

operator++Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected