-
-
Notifications
You must be signed in to change notification settings - Fork 0
ints
Cerus edited this page Aug 10, 2022
·
1 revision
Routine | Visibility |
---|---|
int32_max | π Global |
int32_min | π Global |
int64_max | π Global |
int64_min | π Global |
negate | π Global |
int_to_str | π Global |
int_str_size | π Global |
_digit_one | π Internal |
_digit_ten | π Internal |
Push the maximum value of a 32-bit integer onto the stack
Takes | Gives |
---|---|
Int32 max (int) |
Push the minimum value of a 32-bit integer onto the stack
Takes | Gives |
---|---|
Int32 min (int) |
Push the maximum value of a 64-bit integer onto the stack
Takes | Gives |
---|---|
Int64 max (int) |
Push the minimum value of a 64-bit integer onto the stack
Takes | Gives |
---|---|
Int64 min (int) |
Negate number
Takes | Gives |
---|---|
Num (int) | Negated num (int) |
Negate number
Takes | Gives |
---|---|
Num (int) | Number converted to string (str) |
Calculate the length that the specified int would occupy as a string
Takes | Gives |
---|---|
Num (int) | String size (int) |