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

Method begin

Sources/Dependencies/jsoncpp/value.cpp:1670–1681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1668 }
1669
1670 Value::const_iterator Value::begin() const {
1671 switch (type()) {
1672 case arrayValue:
1673 case objectValue:
1674 if (value_.map_)
1675 return const_iterator(value_.map_->begin());
1676 break;
1677 default:
1678 break;
1679 }
1680 return {};
1681 }
1682
1683 Value::const_iterator Value::end() const {
1684 switch (type()) {

Callers 7

getMemberNamesMethod · 0.45
makePathMethod · 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