MCPcopy Create free account
hub / github.com/SOUI2/soui / begin

Method begin

third-part/jsoncpp/src/lib_json/json_value.cpp:1464–1475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1462}
1463
1464Value::const_iterator Value::begin() const {
1465 switch (type_) {
1466 case arrayValue:
1467 case objectValue:
1468 if (value_.map_)
1469 return const_iterator(value_.map_->begin());
1470 break;
1471 default:
1472 break;
1473 }
1474 return const_iterator();
1475}
1476
1477Value::const_iterator Value::end() const {
1478 switch (type_) {

Callers 15

parseMethod · 0.45
getStructuredErrorsMethod · 0.45
writeValueMethod · 0.45
getMemberNamesMethod · 0.45
makePathMethod · 0.45
json_value.cppFile · 0.45
resolveMethod · 0.45
printValueTreeFunction · 0.45
printFailureMethod · 0.45
checkConstMemberCountMethod · 0.45

Calls

no outgoing calls

Tested by 1

printFailureMethod · 0.36