# anxious
  [](https://codecov.io/gh/mspiegel/anxious)
#### Integer Operations
| `+`, `-`, `*` | ✓ | | ✓ | ✓ |
| `/`, `%` | ✓ | | ✓ | |
| `==` | | ✓ | | ✓ |
| `<`, `>` | | ✓ | | ✓ |
| `&`, `\|`, `^`, `!` | | | ✓ | ✓ |
| `<<`, `>>`, `>>>` | | | ✓ | ✓ |
| Display | | ✓ | | ✓ |
| Debug | ✓ | ✓ | ✓ | ✓ |
`I8` can return Panic value `IntegerOverflow` on arithmetic operations `+`, `-`, `*`
`I8` can return Panic value `IntegerOverflow` or `IntegerDivizionByZero` on arithmetic operations `/`, `%`
`IBit8` and `INomBit8` perform wrapped arithmetic on `+`, `-`, `*`
`IBit8` can return Panic value `IntegerDivizionByZero` on arithmetic operations `/`, `%`
Equality and Comparison are defined on the nominal types
Display is defined on all nominal types
Debug is defined on all types