bcd 0.1.0

Binary coded decimal library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# bcd

Library for binary coded decimal numbers

## Documentation

Coming soon...

## Example

```rust
assert_eq!(
    Bcd(0x01234) +
    Bcd(0x01234),
   (Bcd(0x02468), /* overflow */ false)
);
```