rany 0.1.1

decode/encode usize to radix any
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[‼️]: ✏️README.mdt

# rany : decode/encode usize to radix any

```rust
#[test]
fn test() {
  use rany::{Rany, URL_ID};
  let num = 1234567890;
  let rany = Rany(URL_ID);
  let r = rany.e(num);
  dbg!(&r);
  let r = rany.d(r);
  dbg!(r);
}
```