bpf::UInt class

Public static variables

static uint32 MaxValue constexpr
static uint32 MinValue constexpr

Public static functions

static auto Parse(const String& str) -> uint32
static auto TryParse(const String& str, uint32& res) -> bool

Function documentation

static uint32 bpf::UInt::Parse(const String& str)

Parameters
str the string to parse
Returns 32 bits uint parsed from string
Exceptions
ParseException when the string cannot be converted to a number

Parse a 32 bits uint from a string

static bool bpf::UInt::TryParse(const String& str, uint32& res)

Parameters
str the string to parse
res 32 bits uint parsed from string
Returns true if successfull, false otherwise

Parse a 32 bits uint from a string

Variable documentation

static uint32 bpf::UInt::MaxValue constexpr

32 bits uint max value

static uint32 bpf::UInt::MinValue constexpr

32 bits uint min value