MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / operator--

Function operator--

include/behaviortree_cpp/contrib/json.hpp:13285–13290  ·  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

13283 @pre The iterator is initialized; i.e. `m_object != nullptr`.
13284 */
13285 iter_impl operator--(int)& // NOLINT(cert-dcl21-cpp)
13286 {
13287 auto result = *this;
13288 --(*this);
13289 return result;
13290 }
13291
13292 /*!
13293 @brief pre-decrement (--it)

Callers 2

operator--Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected