Compressed Probabilistic Counting sketch family
-
Returns the result of union operations as a CPC sketch.
CpcSketch.heapify(byte[] byteArray)
Return the given byte array as a CpcSketch on the Java heap using the DEFAULT_UPDATE_SEED.
CpcSketch.heapify(byte[] byteArray,
long seed)
Return the given byte array as a CpcSketch on the Java heap.
CpcSketch.heapify(org.apache.datasketches.memory.Memory mem)
Return the given Memory as a CpcSketch on the Java heap using the DEFAULT_UPDATE_SEED.
CpcSketch.heapify(org.apache.datasketches.memory.Memory mem,
long seed)
Return the given Memory as a CpcSketch on the Java heap.
void
Update this union with a CpcSketch.