(shift: number, h: number)
| 18 | |
| 19 | /** @internal */ |
| 20 | export function hashFragment(shift: number, h: number) { |
| 21 | return (h >>> shift) & MASK |
| 22 | } |
| 23 | |
| 24 | /** @internal */ |
| 25 | export function toBitmap(x: number) { |
no outgoing calls
no test coverage detected