MCPcopy Create free account
hub / github.com/ImageEngine/cortex / hash

Method hash

src/IECore/BlindDataHolder.cpp:125–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125void BlindDataHolder::hash( MurmurHash &h ) const
126{
127 Object::hash( h );
128 // Our hash when blindData is empty or when m_data is unnitialized is the same.
129 // This is currently garanteed by CompoundData but we are safer this way.
130 if ( m_data->readable().size() )
131 {
132 m_data->hash( h );
133 }
134}

Callers 1

testHashMethod · 0.95

Calls 3

readableMethod · 0.80
hashFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected