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

Method end

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

Source from the content-addressed store, hash-verified

1534}
1535
1536Value::const_iterator Value::end() const {
1537 switch (type_) {
1538 case arrayValue:
1539 case objectValue:
1540 if (value_.map_)
1541 return const_iterator(value_.map_->end());
1542 break;
1543 default:
1544 break;
1545 }
1546 return {};
1547}
1548
1549Value::iterator Value::begin() {
1550 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

const_iteratorFunction · 0.50
iteratorClass · 0.50

Tested by 3

GetHeaderMethod · 0.36
procedureToJsonValueMethod · 0.36