Use any characters as your own numeric base and convert to and from decimal.
There is also a Ruby and Crystal implementation of this which this was based off of.
Add the following to your Cargo.toml file
toml
[dependencies]
base_custom = "0.1.0"
To include it for usage add
rust
extern crate base_custom;
use base_custom::BaseCustom;
to your file.
```rust
// Binary with no delimiter
let base2 = BaseCustom::
// Trinary with no delimiter
let base3 = BaseCustom::
// Custom base like Musical Chords and a space delimiter
let basemusic = BaseCustom::
When using BaseCustom::<String>::new
the second parameter must be of Option<char>
to
choose your optional delimiter.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.