exint 0.1.4

An implementation of generic signed and unsigned integers.
Documentation
Strict integer multiplication. Computes `self * rhs`, panicking if overflow occurred.

# Panics

## Overflow behavior

This function will always panic on overflow, regardless of whether overflow checks are enabled.

# Examples

Basic usage:

```
# use ::exint::primitive::*;
# ::exint::uint! {
assert_eq!(i24::MAX.strict_mul(1_i24), i24::MAX);
# }
```

The following panics because of overflow:

```should_panic
# use ::exint::primitive::*;
# ::exint::uint! {
let _ = i24::MAX.strict_mul(2_i24);
# }
```