MCPcopy Create free account
hub / github.com/LAStools/LAStools / operator--

Function operator--

src/json.hpp:13289–13294  ·  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

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

Callers 2

operator--Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected