Y. Xie

Results 2 issues of Y. Xie

Hi, thank you for making this great package! I just noticed this example for `get_shorter_decompositions` function in `util.py`: ``` Example ------- decompositions, counts = get_shorter_decompositions([1, 2, 3]) decompositions == [(1,...

What would be the best way to find out the intersection between a python set and a BloomFilter? I'm currently doing: ``` intersection = [item for item in set if...