Functions -
lang.int
abs | Returns absolute value of an int. |
fromHexString | Returns the integer that |
fromString | Returns the integer that |
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 |
Returns absolute value of an int.
Parameters
- n int
-
int value to be operated on
-
Return Type
(int) absolute value of
n
Returns the integer that 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
Returns the integer that 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
Maximum of one or more int values.
-
Return Type
(int) maximum value of value of
x
and all thexs
Minimum of one or more int values
-
Return Type
(int) minimum value of
n
and all thens
Returns sum of zero or more int values.
Parameters
- ns int[]
-
int values to sum
-
Return Type
(int) sum of all the
ns
; 0 isns
is empty