An open API service indexing awesome lists of open source software.

https://github.com/caub/baseconv-rust


https://github.com/caub/baseconv-rust

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# radix conversion

usage:
```rust
use baseconv::convertor;

let b = convertor!("0123456789", "0123456789abcdef");
b.conv("42", 10, 16); // "2a"
b.conv("4242424242"/*...*/, 10, 16); // "8de2991df40ff783057818d0012f3bc1c..."
```