! @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 */
| 11896 | @since version 3.6.0 |
| 11897 | */ |
| 11898 | void push_back(const std::string& token) |
| 11899 | { |
| 11900 | reference_tokens.push_back(token); |
| 11901 | } |
| 11902 | |
| 11903 | /// @copydoc push_back(const std::string&) |
| 11904 | void push_back(std::string&& token) |
no outgoing calls
no test coverage detected