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

Method grind_uint64

test/stream_parser.cpp:451–462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449 }
450
451 static
452 void
453 grind_uint64(string_view s, uint64_t v)
454 {
455 grind(s,
456 [v](value const& jv, const parse_options&)
457 {
458 if(! BOOST_TEST(jv.is_uint64()))
459 return;
460 BOOST_TEST(jv.get_uint64() == v);
461 });
462 }
463
464 static
465 void

Callers

nothing calls this directly

Calls 2

is_uint64Method · 0.80
get_uint64Method · 0.80

Tested by

no test coverage detected