MCPcopy Create free account
hub / github.com/Illumina/hap.py / copy

Method copy

external/jsoncpp/jsoncpp.cpp:1328–1339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1326
1327
1328void
1329ValueIteratorBase::copy( const SelfType &other )
1330{
1331#ifndef JSON_VALUE_USE_INTERNAL_MAP
1332 current_ = other.current_;
1333 isNull_ = other.isNull_;
1334#else
1335 if ( isArray_ )
1336 iterator_.array_ = other.iterator_.array_;
1337 iterator_.map_ = other.iterator_.map_;
1338#endif
1339}
1340
1341
1342Value

Callers 1

runVCFEvalFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected