MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / operator--

Method operator--

lesson6-Segmentation/json.hpp:11122–11127  ·  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

11120 @pre The iterator is initialized; i.e. `m_object != nullptr`.
11121 */
11122 iter_impl const operator--(int)
11123 {
11124 auto result = *this;
11125 --(*this);
11126 return result;
11127 }
11128
11129 /*!
11130 @brief pre-decrement (--it)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected