MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / parse

Method parse

tests/autotester/json11.hpp:158–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156 std::string & err,
157 JsonParse strategy = JsonParse::STANDARD);
158 static Json parse(const char * in,
159 std::string & err,
160 JsonParse strategy = JsonParse::STANDARD) {
161 if (in) {
162 return parse(std::string(in), err, strategy);
163 } else {
164 err = "null input";
165 return nullptr;
166 }
167 }
168 // Parse multiple objects, concatenated or separated by whitespace
169 static std::vector<Json> parse_multi(
170 const std::string & in,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected