base
Types used to change the base of the displayed integer value. Used like type::Hex<u32> hexNumber;, type::Oct<u16> octalNumber;
Types
type::Bin
type::BinInteger type representing a Binary value. Displays its value in binary format.
<T>: Integer type to use
using Bin<T> = [[format]];type::Dec
type::DecInteger type representing a Decimal value. Displays its value in decimal format.
<T>: Integer type to use
using Dec<T> = [[format]];type::Hex
type::HexInteger type representing a Hexadecimal value. Displays its value in hexadecimal format.
<T>: Integer type to use
using Hex<T> = [[format]];type::Oct
type::OctInteger type representing a Octal value. Displays its value in octal format.
<T>: Integer type to use
Last updated
Was this helpful?