MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / from_json_key

Method from_json_key

proto/fbe_json.h:378–386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

376struct KeyReader
377{
378 static bool from_json_key(const TJson& json, T& key)
379 {
380 std::string str;
381 if (!FBE::JSON::from_json(json, str))
382 return false;
383
384 std::istringstream(str) >> key;
385 return true;
386 }
387};
388
389template <class TJson, typename T>

Callers

nothing calls this directly

Calls 1

from_jsonFunction · 0.85

Tested by

no test coverage detected