(x: number)
| 23 | |
| 24 | /** @internal */ |
| 25 | export function toBitmap(x: number) { |
| 26 | return 1 << x |
| 27 | } |
| 28 | |
| 29 | /** @internal */ |
| 30 | export function fromBitmap(bitmap: number, bit: number) { |
no outgoing calls
no test coverage detected
searching dependent graphs…