bpf::Int64 class

Public static variables

static int64 MaxValue constexpr
static int64 MinValue constexpr

Public static functions

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

Function documentation

static int64 bpf::Int64::Parse(const String& str)

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

Parse a 64 bits int from a string

static bool bpf::Int64::TryParse(const String& str, int64& res)

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

Parse a 64 bits int from a string

Variable documentation

static int64 bpf::Int64::MaxValue constexpr

64 bits int max value

static int64 bpf::Int64::MinValue constexpr

64 bits int min value