Releases: DataDog/sketches-java
Releases · DataDog/sketches-java
v0.3.0
- Avoid iterating over empty bins when using
Stores
's methods (getStream
,getAscendingStream
,getDescendingStream
,getAscendingIterator
andgetDescendingIterator
) - Track bin counts as
double
and update the signature of related methods
This release introduces breaking API changes:
QuantileSketch.getCount()
,Store.getTotalCount()
andBin.getCount()
now return adouble
instead of along
,Store
has a newadd
method with signaturevoid add(int, double)
,- the constructor of
Bin
now takes adouble
as a second parameter (count
).
v0.2.1
- Make sure very small and very large input values are properly handled
v0.2.0
- Add support for Java 8