@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/
| 21708 | /// @brief access the last element |
| 21709 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |
| 21710 | reference back() |
| 21711 | { |
| 21712 | auto tmp = end(); |
| 21713 | --tmp; |
| 21714 | return *tmp; |
| 21715 | } |
| 21716 | |
| 21717 | /// @brief access the last element |
| 21718 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |