MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / end

Method end

Sources/Dependencies/jsoncpp/value.cpp:1683–1694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1681 }
1682
1683 Value::const_iterator Value::end() const {
1684 switch (type()) {
1685 case arrayValue:
1686 case objectValue:
1687 if (value_.map_)
1688 return const_iterator(value_.map_->end());
1689 break;
1690 default:
1691 break;
1692 }
1693 return {};
1694 }
1695
1696 Value::iterator Value::begin() {
1697 switch (type()) {

Callers 12

sizeMethod · 0.45
value.cppFile · 0.45
findMethod · 0.45
removeMemberMethod · 0.45
removeIndexMethod · 0.45
getMemberNamesMethod · 0.45
addPathInArgMethod · 0.45
valueToStringFunction · 0.45
writeValueMethod · 0.45
validateMethod · 0.45
validateMethod · 0.45

Calls 3

typeClass · 0.85
const_iteratorClass · 0.50
iteratorClass · 0.50

Tested by

no test coverage detected