| 3211 | |
| 3212 | template <typename T,typename... Args> |
| 3213 | bool is(Args&&... args) const noexcept |
| 3214 | { |
| 3215 | return reflect::json_conv_traits<basic_json,T>::is(*this,std::forward<Args>(args)...); |
| 3216 | } |
| 3217 | |
| 3218 | bool is_string() const noexcept |
| 3219 | { |
no outgoing calls
no test coverage detected