Searched defs:ValueFunctor (Results 1 – 3 of 3) sorted by relevance
161 struct ValueFunctor { in type() struct162 Json::Type operator()(const absl::monostate&) { return Type::kNull; } in type()163 Json::Type operator()(bool) { return Type::kBoolean; } in type()164 Json::Type operator()(const NumberValue&) { return Type::kNumber; } in type()165 Json::Type operator()(const std::string&) { return Type::kString; } in type()166 Json::Type operator()(const Object&) { return Type::kObject; } in type()167 Json::Type operator()(const Array&) { return Type::kArray; } in type()