MCPcopy Create free account
hub / github.com/boostorg/parser / is_boolean

Method is_boolean

example/json.hpp:287–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

285
286 bool is_null() const noexcept { return kind() == value_kind::null; }
287 bool is_boolean() const noexcept
288 {
289 return kind() == value_kind::boolean;
290 }
291 bool is_number() const noexcept { return kind() == value_kind::number; }
292 bool is_string() const noexcept { return kind() == value_kind::string; }
293 bool is_object() const noexcept { return kind() == value_kind::object; }

Callers 1

callMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected