MCPcopy Create free account
hub / github.com/Kitware/CMake / end

Method end

Utilities/cmjsoncpp/src/lib_json/json_value.cpp:1461–1472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 15

parseMethod · 0.45
validateMethod · 0.45
valueToStringFunction · 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
getMemberNamesMethod · 0.45

Calls 2

typeClass · 0.50
iteratorClass · 0.50

Tested by

no test coverage detected