MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / from_json

Function from_json

extern/json/json.hpp:4597–4604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4595
4596template<typename BasicJsonType>
4597inline void from_json(const BasicJsonType& j, typename std::nullptr_t& n)
4598{
4599 if (JSON_HEDLEY_UNLIKELY(!j.is_null()))
4600 {
4601 JSON_THROW(type_error::create(302, concat("type must be null, but is ", j.type_name()), &j));
4602 }
4603 n = nullptr;
4604}
4605
4606// overloads for basic_json template parameters
4607template < typename BasicJsonType, typename ArithmeticType,

Callers 5

json.hppFile · 0.85
operator()Method · 0.85
from_jsonMethod · 0.85
get_implFunction · 0.85
get_toFunction · 0.85

Calls 15

get_arithmetic_valueFunction · 0.85
transformFunction · 0.85
from_json_array_implFunction · 0.85
moveFunction · 0.85
from_json_tuple_implFunction · 0.85
is_booleanMethod · 0.80
rbeginMethod · 0.80
rendMethod · 0.80
atMethod · 0.80
createFunction · 0.70
concatFunction · 0.70

Tested by

no test coverage detected