datasketches-cpp
datasketches-cpp copied to clipboard
Core C++ Sketch Library
Results
11
datasketches-cpp issues
Sort by
recently updated
recently updated
newest added
I have run a simple theta sketch computation as below in Java and CPP ``` Union union = Union.builder().buildUnion(); union.update(1); union.update(2); CompactSketch compactSketch = union.getResult(); byte[] bytes = union.getResult().toByteArray() ```...