bpf::Int8 class

Public static variables

static int8 MaxValue constexpr
static int8 MinValue constexpr

Public static functions

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

Function documentation

static int8 bpf::Int8::Parse(const String& str)

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

Parse an 8 bits int from a string

static bool bpf::Int8::TryParse(const String& str, int8& res)

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

Parse an 8 bits int from a string

Variable documentation

static int8 bpf::Int8::MaxValue constexpr

8 bits int max value

static int8 bpf::Int8::MinValue constexpr

8 bits int min value