MCPcopy Create free account
hub / github.com/Illumina/paragraph / begin

Method begin

external/jsoncpp/jsoncpp.cpp:3933–3944  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3931}
3932
3933Value::const_iterator Value::begin() const {
3934 switch (type_) {
3935 case arrayValue:
3936 case objectValue:
3937 if (value_.map_)
3938 return const_iterator(value_.map_->begin());
3939 break;
3940 default:
3941 break;
3942 }
3943 return const_iterator();
3944}
3945
3946Value::const_iterator Value::end() const {
3947 switch (type_) {

Callers 9

parseMethod · 0.45
getStructuredErrorsMethod · 0.45
getMemberNamesMethod · 0.45
makePathMethod · 0.45
jsoncpp.cppFile · 0.45
resolveMethod · 0.45
writeValueMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected