Check if this is a @ref string. Returns `true` if the value's @ref kind() is `kind::string`. @returns `this->kind() == kind::string`. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 1221 | No-throw guarantee. |
| 1222 | */ |
| 1223 | bool |
| 1224 | is_string() const noexcept |
| 1225 | { |
| 1226 | return kind() == json::kind::string; |
| 1227 | } |
| 1228 | |
| 1229 | /** Check if this is a `std::int64_t`. |
| 1230 |
no test coverage detected