MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / back

Function back

Source/external/json.hpp:21574–21579  ·  view source on GitHub ↗

@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/

Source from the content-addressed store, hash-verified

21572 /// @brief access the last element
21573 /// @sa https://json.nlohmann.me/api/basic_json/back/
21574 reference back()
21575 {
21576 auto tmp = end();
21577 --tmp;
21578 return *tmp;
21579 }
21580
21581 /// @brief access the last element
21582 /// @sa https://json.nlohmann.me/api/basic_json/back/

Callers

nothing calls this directly

Calls 2

endFunction · 0.85
cendFunction · 0.85

Tested by

no test coverage detected