exint 0.1.4

An implementation of generic signed and unsigned integers.
Documentation
1
2
3
4
5
6
7
8
9
Unchecked shift right. Computes `self >> rhs`,
assuming that `rhs` is less than the number of bits in `self`.

# Safety

This results in undefined behavior when `rhs` is larger than or equal to the
number of bits in `self`, i.e. when [`checked_shr`] would return `None`.

[`checked_shr`]: Self::checked_shr