MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / begin

Method begin

json/jsoncpp.cpp:3963–3974  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3961}
3962
3963Value::const_iterator Value::begin() const {
3964 switch (type_) {
3965 case arrayValue:
3966 case objectValue:
3967 if (value_.map_)
3968 return const_iterator(value_.map_->begin());
3969 break;
3970 default:
3971 break;
3972 }
3973 return const_iterator();
3974}
3975
3976Value::const_iterator Value::end() const {
3977 switch (type_) {

Callers 10

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

Calls

no outgoing calls

Tested by

no test coverage detected