Functions -
lang.int
abs |
Returns absolute value of an int.
|
fromHexString |
Returns the integer that
s represents in hexadecimal.
|
fromString |
Returns the integer that
s represents in decimal.
|
max |
Maximum of one or more int values.
|
min |
Minimum of one or more int values
|
sum |
Returns sum of zero or more int values.
|
toHexString |
Returns representation of
n as hexdecimal string.
|
Parameters
- n int
-
int value to be operated on
-
Return Type
(int) absolute value of
n
s
represents in hexadecimal.
Both uppercase A-F and lowercase a-f are allowed.
It may start with an optional +
or -
sign.
No 0x
or 0X
prefix is allowed.
Returns an error if the s
is not in an allowed format.
Parameters
- s string
-
hexadecimal string representation of int value
-
Return Type
(int | error) int value or error
s
represents in decimal.
Returns error if s
is not the decimal representation of an integer.
The first character may be +
or -
.
This is the inverse of value:toString
applied to an int
.
Parameters
- s string
-
string representation of a integer value
-
Return Type
(int | error) int representation of the argument or error
Parameters
- n int
-
first int value
- ns int[]
-
other int values
-
Return Type
(int) maximum value of value of
x
and all thexs
Parameters
- n int
-
first int value
- ns int[]
-
other int values
-
Return Type
(int) minimum value of
n
and all thens
Parameters
- ns int[]
-
int values to sum
-
Return Type
(int) sum of all the
ns
; 0 isns
is empty
n
as hexdecimal string.
There is no 0x
prefix. Lowercase letters a-f are used.
Negative numbers will have a -
prefix. No sign for
non-negative numbers.
Parameters
- n int
-
int value
-
Return Type
(string) hexadecimal string representation of int value