MCPcopy Create free account
hub / github.com/GDRETools/gdsdecomp / operator--

Function operator--

external/tinygltf/json.hpp:11991–11996  ·  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

11989 @pre The iterator is initialized; i.e. `m_object != nullptr`.
11990 */
11991 iter_impl const operator--(int) // NOLINT(readability-const-return-type)
11992 {
11993 auto result = *this;
11994 --(*this);
11995 return result;
11996 }
11997
11998 /*!
11999 @brief pre-decrement (--it)

Callers 2

operator--Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected