MCPcopy Create free account
hub / github.com/boostorg/json / grind_int64

Method grind_int64

test/stream_parser.cpp:438–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

436 }
437
438 static
439 void
440 grind_int64(string_view s, int64_t v)
441 {
442 grind(s,
443 [v](value const& jv, const parse_options&)
444 {
445 if(! BOOST_TEST(jv.is_int64()))
446 return;
447 BOOST_TEST(jv.get_int64() == v);
448 });
449 }
450
451 static
452 void

Callers

nothing calls this directly

Calls 2

is_int64Method · 0.80
get_int64Method · 0.80

Tested by

no test coverage detected