MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/PositionBasedDynamics / cbegin

Method cbegin

extern/json/json.hpp:4341–4346  ·  view source on GitHub ↗

! @brief returns a const iterator to the first element Returns a const iterator to the first element. @image html range-begin-end.svg "Illustration from cppreference.com" @return const iterator to the first element @complexity Constant. @requirement This function helps `basic_json` satisfying the [Container](http://en.cppreference.com/w/cpp/concept/Container) r

Source from the content-addressed store, hash-verified

4339 @since version 1.0.0
4340 */
4341 const_iterator cbegin() const noexcept
4342 {
4343 const_iterator result(this);
4344 result.set_begin();
4345 return result;
4346 }
4347
4348 /*!
4349 @brief returns an iterator to one past the last element

Callers 2

broadcastFunction · 0.45
dumpMethod · 0.45

Calls 1

set_beginMethod · 0.45

Tested by

no test coverage detected