MCPcopy Create free account
hub / github.com/CalcProgrammer1/OpenRGB / operator--

Function operator--

dependencies/json/json.hpp:11192–11197  ·  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

11190 @pre The iterator is initialized; i.e. `m_object != nullptr`.
11191 */
11192 iter_impl const operator--(int)
11193 {
11194 auto result = *this;
11195 --(*this);
11196 return result;
11197 }
11198
11199 /*!
11200 @brief pre-decrement (--it)

Callers 2

operator--Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected