MCPcopy Index your code
hub / github.com/Kitware/CMake / begin

Method begin

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

Source from the content-addressed store, hash-verified

1446}
1447
1448Value::const_iterator Value::begin() const {
1449 switch (type()) {
1450 case arrayValue:
1451 case objectValue:
1452 if (value_.map_)
1453 return const_iterator(value_.map_->begin());
1454 break;
1455 default:
1456 break;
1457 }
1458 return {};
1459}
1460
1461Value::const_iterator Value::end() const {
1462 switch (type()) {

Callers 15

parseMethod · 0.45
validateMethod · 0.45
valueToStringFunction · 0.45
writeValueMethod · 0.45
validateMethod · 0.45
getMemberNamesMethod · 0.45
makePathMethod · 0.45
checkMethod · 0.45
issueCorrectionMethod · 0.45
matchMethod · 0.45

Calls 2

typeClass · 0.50
iteratorClass · 0.50

Tested by

no test coverage detected