! @brief append an unescaped token at the end of the reference pointer @param[in] token token to add @complexity Amortized constant. @liveexample{The example shows the result of `push_back` for different JSON Pointers.,json_pointer__push_back} @since version 3.6.0 */
| 8699 | @since version 3.6.0 |
| 8700 | */ |
| 8701 | void push_back(const std::string& token) |
| 8702 | { |
| 8703 | reference_tokens.push_back(token); |
| 8704 | } |
| 8705 | |
| 8706 | /// @copydoc push_back(const std::string&) |
| 8707 | void push_back(std::string&& token) |
no outgoing calls
no test coverage detected