anxious 0.1.0

anxious provides a panic-free dialect of Rust
Documentation
  • Coverage
  • 0%
    0 out of 19 items documented0 out of 18 items with examples
  • Size
  • Source code size: 62.74 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 8.65 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • mspiegel/anxious
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mspiegel

anxious

static analysis unit tests codecov

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