@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/
| 2435 | /// @brief access the last element |
| 2436 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |
| 2437 | reference back() |
| 2438 | { |
| 2439 | auto tmp = end(); |
| 2440 | --tmp; |
| 2441 | return *tmp; |
| 2442 | } |
| 2443 | |
| 2444 | /// @brief access the last element |
| 2445 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |