returns index of highest bit, or -1 if value is zero or negative
(value)
| 1567 | |
| 1568 | |
| 1569 | def _high_bit(value): |
| 1570 | """ |
| 1571 | returns index of highest bit, or -1 if value is zero or negative |
| 1572 | """ |
| 1573 | return value.bit_length() - 1 |
| 1574 | |
| 1575 | def unique(enumeration): |
| 1576 | """ |
no outgoing calls
no test coverage detected