@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/
| 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/ |