@brief access the last element @sa https://json.nlohmann.me/api/basic_json/back/
| 2229 | /// @brief access the last element |
| 2230 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |
| 2231 | reference back() |
| 2232 | { |
| 2233 | auto tmp = end(); |
| 2234 | --tmp; |
| 2235 | return *tmp; |
| 2236 | } |
| 2237 | |
| 2238 | /// @brief access the last element |
| 2239 | /// @sa https://json.nlohmann.me/api/basic_json/back/ |