$toInteger

Converts the given decimal numeric values to integers.
Syntax
    $toIteger{value_1}{value_2} ... {value_n}
DocumentationConverts the given decimal numeric values to integers:

    Parameters:
      value_1 through value_n, the values to be casted to integers.
    Returns:
      a '$\ ' separated list of all casted values.
Examples
Example 1:
    $toInteger{423}{F43}{592}{32}

    Result:
    423 592 32
Example 2:
    $toInteger{10.0}

    Result:
    10
Example 3:
    $set{a}{124}
    $set{b}{354}
    $toInteger{$get{a}}{$get{b}}

    Result:
    sets local variables "a" and "b" to the given value, returns both casted
    to integer:
    124 354
GroupMath
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 3