exint 0.1.4

An implementation of generic signed and unsigned integers.
Documentation
1
2
3
4
5
6
7
8
Unchecked integer division without remainder. Computes `self / rhs`.

# Safety

This results in undefined behavior when `rhs == 0` or `self % rhs != 0`,
i.e. when [`checked_div_exact`] would return `None`.

[`checked_div_exact`]: Self::checked_div_exact