()
| 31 | |
| 32 | #[test_case] |
| 33 | fn test_nonzero_bit_index() { |
| 34 | assert_eq!(nonzero_bit_index(1), 0); |
| 35 | assert_eq!(nonzero_bit_index(32), 5); |
| 36 | } |
| 37 | |
| 38 | /// Calculate the number of bitmap levels needed |
| 39 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected