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
Properties
Link copied to clipboard
Reference to the LongHasher that produced the bitset; resolved by contains.
Functions
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.
BloomFilterResult
bits
hasher
Reference to the LongHasher that produced the bitset; resolved by contains.