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

Method isEqual

external/jsoncpp/jsoncpp.cpp:1311–1325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1309
1310
1311bool
1312ValueIteratorBase::isEqual( const SelfType &other ) const
1313{
1314#ifndef JSON_VALUE_USE_INTERNAL_MAP
1315 if ( isNull_ )
1316 {
1317 return other.isNull_;
1318 }
1319 return current_ == other.current_;
1320#else
1321 if ( isArray_ )
1322 return ValueInternalArray::equals( iterator_.array_, other.iterator_.array_ );
1323 return ValueInternalMap::equals( iterator_.map_, other.iterator_.map_ );
1324#endif
1325}
1326
1327
1328void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected