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

Method end

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

Source from the content-addressed store, hash-verified

1475}
1476
1477Value::const_iterator Value::end() const {
1478 switch (type_) {
1479 case arrayValue:
1480 case objectValue:
1481 if (value_.map_)
1482 return const_iterator(value_.map_->end());
1483 break;
1484 default:
1485 break;
1486 }
1487 return const_iterator();
1488}
1489
1490Value::iterator Value::begin() {
1491 switch (type_) {

Callers 15

parseMethod · 0.45
getStructuredErrorsMethod · 0.45
validateMethod · 0.45
writeValueMethod · 0.45
validateMethod · 0.45
sizeMethod · 0.45
json_value.cppFile · 0.45
findMethod · 0.45
removeMemberMethod · 0.45
removeIndexMethod · 0.45

Calls

no outgoing calls

Tested by 1

printFailureMethod · 0.36