template<typename T>
bpf::BaseConvert class

Template parameters
T the type of number

Utility class to convert numbers in bases different from decimal WARNING: This class does not work on decimal types

Constructors, destructors, conversion operators

BaseConvert(String base) explicit

Public functions

auto FromString(const String& nbr) -> T
auto ToString(T nbr) -> String

Function documentation

template<typename T>
bpf::BaseConvert<T>::BaseConvert(String base) explicit

Parameters
base the set of characters to use for the base

Constructs an instance of BaseConvert

template<typename T>
T bpf::BaseConvert<T>::FromString(const String& nbr)

Parameters
nbr the number string
Returns the converted number

Converts a number string to an actual number type

template<typename T>
String bpf::BaseConvert<T>::ToString(T nbr)

Parameters
nbr the number to convert to a string
Returns the number as a string in the target base

Converts a number type to a number string