Why can't I do something like this: ``` CountMinSketch sketch = new CountMinSketch(0.00001, 0.99999, 1); sketch.add(1, Long.MAX_VALUE); sketch.add(2, 22); ``` It fails because of the overflow check.
Why can't I do something like this:
It fails because of the overflow check.