get the number of bits in the bigint.
| 2374 | |
| 2375 | // get the number of bits in the bigint. |
| 2376 | FASTFLOAT_CONSTEXPR20 int bit_length() const noexcept { |
| 2377 | int lz = ctlz(); |
| 2378 | return int(limb_bits * vec.len()) - lz; |
| 2379 | } |
| 2380 | |
| 2381 | FASTFLOAT_CONSTEXPR20 bool mul(limb y) noexcept { |
| 2382 | return small_mul(vec, y); |
no test coverage detected