Check if this is an @ref array. Returns `true` if the value's @ref kind() is `kind::array`. @returns `this->kind() == kind::array`. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 1185 | No-throw guarantee. |
| 1186 | */ |
| 1187 | bool |
| 1188 | is_array() const noexcept |
| 1189 | { |
| 1190 | return kind() == json::kind::array; |
| 1191 | } |
| 1192 | |
| 1193 | /** Check if this is an @ref object. |
| 1194 |