| 1 | import { BloomFilter } from '../../src'; |
| 2 | |
| 3 | interface ObjectWithValue { |
| 4 | value: number; |
| 5 | } |
| 6 | |
| 7 | const OBJECT_HASH_FUNCTIONS: Array<(item: ObjectWithValue) => number> = [ |
| 8 | (x) => (25 * x.value + 13) % 31, |
nothing calls this directly
no outgoing calls
no test coverage detected