Crate base_converter

Crate base_converter 

Source
Expand description

Convert numbers from base to base.

Enums§

CheckBaseError
Errors that can be returned by check_base and any function that takes a base as argument.
ConversionError
Errors that can be returned when converting a number between bases.

Statics§

BASE2
01
BASE8
01234567
BASE10
0123456789
BASE16
0123456789ABCDEF

Functions§

base_to_base
Converts a number from any base to any other base.
base_to_decimal
Converts a number from any base to an usize.
check_base
Checks if a base is valid.
decimal_to_base
Converts an usize to another base.