#numbers #base #binary #name #abbreviation #misali #jan

bin+lib bases

Implementation of jan Misali's number base algorithm

8 releases

0.2.6 Jul 3, 2021
0.2.5 Jul 3, 2021
0.2.4 Jun 25, 2021
0.1.0 Jun 25, 2021

#8 in #abbreviation

CC0 license

26KB
693 lines

bases

Rust implementation of jan Misali's number base algorithm (see a base-neutral system for naming numbering systems and https://www.seximal.net/names-of-other-bases).

Installation and Usage:

# install with cargo
cargo install bases

# print the name of base 6 (seximal)
bases 6

# print names and abbreviations of all bases
bases

Using bases as a library:

This crate can also be used as a library, check out docs.rs/bases for more info.

Examples:

$ bases 6
seximal
$ bases
1: unary (UNA)
2: binary (BIN)
3: trinary (TRI)
4: quaternary (QUA)
5: quinary (QUI)
6: seximal (SEX)
7: septimal (SEP)
8: octal (OCT)
9: nonary (NON)
10: decimal (DEC)
11: elevenary (ELE)
12: dozenal (DOZ)
13: baker's dozenal (BAK)
14: biseptimal (BIS)
15: triquinary (TRQ)
16: hex (HEX)
17: suboptimal (SUB)
18: triseximal (TRS)
19: untriseximal (UNT)
20: vigesimal (VIG)
21: triseptimal (TIS)
22: bielevenary (BIE)
23: unbielevenary (UNB)
24: tetraseximal (TET)
25: pentaquinary (PEN)
26: biker's dozenal (BIK)
27: trinonary (TRN)
28: tetraseptimal (TER)
29: untetraseptimal (UTT)
30: pentaseximal (PET)
...

No runtime deps