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

Function operator--

extern/json/json.hpp:13207–13212  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

13205 @pre The iterator is initialized; i.e. `m_object != nullptr`.
13206 */
13207 iter_impl operator--(int)& // NOLINT(cert-dcl21-cpp)
13208 {
13209 auto result = *this;
13210 --(*this);
13211 return result;
13212 }
13213
13214 /*!
13215 @brief pre-decrement (--it)

Callers 2

operator--Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected