sbitty 0.1.1

library defining bitwise operations on standard integers type
Documentation

Standard integers does not have any standard implementation of bitwise manipulation. This crate is made to fill this gap and hide ugly bitwise operation which are error prone behind some runtime safe functions.

It is made so you only have to call functions to use it properly. This crate use indexes as you would in vectors or Arrays. If any index error happend in your program you will get Option<T> or Result<_,_> returned to properly handle this in a production ready manner.