anxious 0.1.0

anxious provides a panic-free dialect of Rust
Documentation
# anxious

![static analysis](https://github.com/mspiegel/anxious/actions/workflows/static-analysis.yaml/badge.svg) ![unit tests](https://github.com/mspiegel/anxious/actions/workflows/unit-tests.yaml/badge.svg) [![codecov](https://codecov.io/gh/mspiegel/anxious/graph/badge.svg?token=7H2EY41PIE)](https://codecov.io/gh/mspiegel/anxious)

#### Integer Operations

| Operation           | I8  | INom8 | IBit8 | INomBit8 |
| ------------------- | --- | ------- | -- | ------- |
| `+`, `-`, `*`       ||          |||
| `/`, `%`            ||          ||        |
| `==`                |    ||    ||
| `<`, `>`            |    ||    ||
| `&`, `\|`, `^`, `!` |    |          |||
| `<<`, `>>`, `>>>`   |    |          |||
| 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