BloomFilterResult
@Serializable
@SerialName(value = "BloomFilterResult")
Bloom-filter snapshot. words is the bitset packed as bits / 64 longs; merging two snapshots requires identical bits and hashes.
Constructors
BloomFilterResult
Properties
bits
hasher
Reference to the LongHasher that produced the bitset; resolved by contains.
hashes
totalSeen
totalWeights
Cumulative weight of observations folded into this result.
words
Functions
equals
hashCode
toString
Link copied to clipboard
True iff every bit set during an update(value) is still set in words. Re-derives the bit positions with the same LongHasher the filter used (resolved by name via Hashers), so a custom hasher must be registered before querying.