space_ex v0.1.1 SpaceEx.KRPC.Expression

A server side expression.

Link to this section Summary

Functions

Numerical addition

Boolean and operator

A constant value of type double

A constant value of type float

A constant value of type int

A constant value of type string

Numerical division

Equality comparison

Boolean exclusive-or operator

Greater than numerical comparison

Greater than or equal numerical comparison

Less than numerical comparison

Less than or equal numerical comparison

Numerical modulo operator

Numerical multiplication

Boolean negation operator

Inequality comparison

Boolean or operator

Numerical power operator

Numerical subtraction

Convert to a double type

Convert to a float type

Convert to an int type

Link to this section Functions

Link to this function static_add(conn, arg0, arg1)

Numerical addition.

  • arg0

  • arg1

Link to this function static_and(conn, arg0, arg1)

Boolean and operator.

  • arg0

  • arg1

Link to this function static_call(conn, call)

An RPC call.

  • call
Link to this function static_constant_double(conn, value)

A constant value of type double.

  • value
Link to this function static_constant_float(conn, value)

A constant value of type float.

  • value
Link to this function static_constant_int(conn, value)

A constant value of type int.

  • value
Link to this function static_constant_string(conn, value)

A constant value of type string.

  • value
Link to this function static_divide(conn, arg0, arg1)

Numerical division.

  • arg0

  • arg1

Link to this function static_equal(conn, arg0, arg1)

Equality comparison.

  • arg0

  • arg1

Link to this function static_exclusive_or(conn, arg0, arg1)

Boolean exclusive-or operator.

  • arg0

  • arg1

Link to this function static_greater_than(conn, arg0, arg1)

Greater than numerical comparison.

  • arg0

  • arg1

Link to this function static_greater_than_or_equal(conn, arg0, arg1)

Greater than or equal numerical comparison.

  • arg0

  • arg1

Link to this function static_left_shift(conn, arg0, arg1)

Bitwise left shift.

  • arg0

  • arg1

Link to this function static_less_than(conn, arg0, arg1)

Less than numerical comparison.

  • arg0

  • arg1

Link to this function static_less_than_or_equal(conn, arg0, arg1)

Less than or equal numerical comparison.

  • arg0

  • arg1

Link to this function static_modulo(conn, arg0, arg1)

Numerical modulo operator.

  • arg0

  • arg1

Returns: The remainder of arg0 divided by arg1

Link to this function static_multiply(conn, arg0, arg1)

Numerical multiplication.

  • arg0

  • arg1

Link to this function static_not(conn, arg)

Boolean negation operator.

  • arg
Link to this function static_not_equal(conn, arg0, arg1)

Inequality comparison.

  • arg0

  • arg1

Link to this function static_or(conn, arg0, arg1)

Boolean or operator.

  • arg0

  • arg1

Link to this function static_power(conn, arg0, arg1)

Numerical power operator.

  • arg0

  • arg1

Returns: arg0 raised to the power of arg1

Link to this function static_right_shift(conn, arg0, arg1)

Bitwise right shift.

  • arg0

  • arg1

Link to this function static_subtract(conn, arg0, arg1)

Numerical subtraction.

  • arg0

  • arg1

Link to this function static_to_double(conn, arg)

Convert to a double type.

  • arg
Link to this function static_to_float(conn, arg)

Convert to a float type.

  • arg
Link to this function static_to_int(conn, arg)

Convert to an int type.

  • arg