net.openhft.chronicle.bytes.AbstractBytesStore Maven / Gradle / Ivy
package net.openhft.chronicle.bytes;
import net.openhft.chronicle.bytes.algo.VanillaBytesStoreHash;
/**
* Created by peter on 07/05/16.
*/
public abstract class AbstractBytesStore, Underlying> implements BytesStore {
@Override
public int hashCode() {
long h = VanillaBytesStoreHash.INSTANCE.applyAsLong(this);
h ^= h >> 32;
return (int) h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy