MCPcopy Create free account
hub / github.com/ComodoSecurity/openedr / begin

Method begin

edrav2/eprj/jsoncpp/src/lib_json/json_value.cpp:1523–1534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1521}
1522
1523Value::const_iterator Value::begin() const {
1524 switch (type_) {
1525 case arrayValue:
1526 case objectValue:
1527 if (value_.map_)
1528 return const_iterator(value_.map_->begin());
1529 break;
1530 default:
1531 break;
1532 }
1533 return {};
1534}
1535
1536Value::const_iterator Value::end() const {
1537 switch (type_) {

Callers 15

parseMethod · 0.45
valueToStringFunction · 0.45
writeValueMethod · 0.45
getMemberNamesMethod · 0.45
makePathMethod · 0.45
printValueTreeFunction · 0.45
checkConstMemberCountMethod · 0.45
checkMemberCountMethod · 0.45
JSONTEST_FIXTUREFunction · 0.45
main.cppFile · 0.45
getErrorCodeMethod · 0.45

Calls 2

const_iteratorFunction · 0.50
iteratorClass · 0.50

Tested by 1

procedureToJsonValueMethod · 0.36