rany 0.1.4

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 as rany;
  for num in [1234567890, 0, 1] {
    let r = rany.e(num);
    dbg!(&r);
    let r = rany.d(r);
    dbg!(r);
  }
}
```