@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/
| 21616 | /// @brief access the last element |
| 21617 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |
| 21618 | reference back() |
| 21619 | { |
| 21620 | auto tmp = end(); |
| 21621 | --tmp; |
| 21622 | return *tmp; |
| 21623 | } |
| 21624 | |
| 21625 | /// @brief access the last element |
| 21626 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |