exint 0.1.4

An implementation of generic signed and unsigned integers.
Documentation
1
2
3
4
5
6
7
8
9
Unchecked exact shift left. Computes `self << rhs`, assuming the operation
can be losslessly reversed and `rhs` cannot be larger than `Self::BITS`.

# Safety

This results in undefined behavior when `rhs >= self.leading_zeros()` and
`rhs >= self.leading_ones()`, i.e. when [`shl_exact`] would return `None`.

[`shl_exact`]: Self::shl_exact