Add duodecimal system

Fixes #3.
This commit is contained in:
Florine W. Dekker 2019-11-18 10:29:48 +01:00
parent 6ad2b95410
commit b2154c3bd4
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@
new NumeralSystemInput("Binary", new NumeralSystem(2, "01")), new NumeralSystemInput("Binary", new NumeralSystem(2, "01")),
new NumeralSystemInput("Octal", new NumeralSystem(8, "01234567")), new NumeralSystemInput("Octal", new NumeralSystem(8, "01234567")),
new NumeralSystemInput("Decimal", new NumeralSystem(10, "0123456789")), new NumeralSystemInput("Decimal", new NumeralSystem(10, "0123456789")),
new NumeralSystemInput("Duodecimal", new NumeralSystem(12, "0123456789ab", caseSensitive = false)),
new NumeralSystemInput("Hexadecimal", new NumeralSystem(16, "0123456789abcdef", caseSensitive = false)), new NumeralSystemInput("Hexadecimal", new NumeralSystem(16, "0123456789abcdef", caseSensitive = false)),
new Base64NumeralSystemInput("Base64"), new Base64NumeralSystemInput("Base64"),
new NumeralSystemInput( new NumeralSystemInput(