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

Function operator--

Source/external/json.hpp:13203–13208  ·  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

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

Callers 2

operator--Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected