MCPcopy Create free account
hub / github.com/Samsung/ONE / begin

Method begin

runtime/3rdparty/jsoncpp/jsoncpp.cpp:4166–4179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4164}
4165
4166Value::const_iterator Value::begin() const
4167{
4168 switch (type())
4169 {
4170 case arrayValue:
4171 case objectValue:
4172 if (value_.map_)
4173 return const_iterator(value_.map_->begin());
4174 break;
4175 default:
4176 break;
4177 }
4178 return {};
4179}
4180
4181Value::const_iterator Value::end() const
4182{

Callers 15

parseMethod · 0.45
validateMethod · 0.45
getMemberNamesMethod · 0.45
makePathMethod · 0.45
valueToStringFunction · 0.45
writeValueMethod · 0.45
destroyContextMethod · 0.45
registerModelMethod · 0.45
unregisterModelMethod · 0.45
createRequestMethod · 0.45
destroyRequestMethod · 0.45

Calls 1

typeFunction · 0.50

Tested by

no test coverage detected