rany 0.1.2

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

# rany : decode/encode usize to radix any

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