pub fn is_number() -> JsonPredicateMatcher<impl Fn(&Value) -> bool, &'static str, &'static str>
Matches JSON number values.
assert_that!(j!(3.14), json::is_number()); assert_that!(j!("three"), not(json::is_number()));