python_builtin#
Implementation of builtin namespace in python.
Functions
Copies its input value to each of its two outputs. |
|
Ignores its input value, has no outputs. |
|
Check two input values of the same type for equality, producing a boolean. |
|
Add floats a and b together; a + b |
|
float division of a by b; a / b |
|
Check if a is greater than or equal to b; a >= b |
|
Check if a is greater than b; a > b |
|
Check if a is less than or equal to b; a <= b |
|
Convert a float to an integer |
|
Check if a is less than b; a < b |
|
Modulo of a by b; a % b |
|
Multiply floats a and b together; a * b |
|
Exponentiate a by power b; a ^ b |
|
Subtract float b from float a; a - b |
|
Add integers a and b together; a + b |
|
Integer division of a by b; a / b |
|
Check if a is greater than or equal to b; a >= b |
|
Check if a is greater than b; a > b |
|
Check if a is less than or equal to b; a <= b |
|
Check if a is less than b; a < b |
|
Modulo of a by b; a % b |
|
Multiply integers a and b together; a * b |
|
Transforms an input Map into an output by adding an entry (or replacing an existing one) for an input key and value. |
|
Convert an integer to a float |
|
Exponentiate a by power b; a ^ b. |
|
Subtract integer b from integer a; a - b |
|
Makes an output Pair from two separate inputs. |
|
Construct a struct from incoming ports. |
|
Check two values are not equal. |
|
Pops the first element from an input Vec, returning said element separately from the remainder Vec. |
|
Adds an input element onto an input Vec to give an output Vec. |
|
Remove a key (input) from a map (input), return the map and value. |
|
Identity function with an asynchronous delay input in seconds. |
|
Passes one or other of two inputs through according to a third, boolean, input. |
|
Splits an input Pair into two separate outputs. |
|
Check either a or b are true; a ^ b |
Classes