space_ex v0.4.0 SpaceEx.KRPC.Expression

A server side expression.

Link to this section Summary

Functions

Numerical addition

Boolean and operator

An RPC call

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

Bitwise left shift

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

Bitwise right shift

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 add(conn, arg0, arg1)

Numerical addition.

  • arg0

  • arg1

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

Boolean and operator.

  • arg0

  • arg1

Link to this function call(conn, call)

An RPC call.

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

A constant value of type double.

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

A constant value of type float.

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

A constant value of type int.

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

A constant value of type string.

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

Numerical division.

  • arg0

  • arg1

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

Equality comparison.

  • arg0

  • arg1

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

Boolean exclusive-or operator.

  • arg0

  • arg1

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

Greater than numerical comparison.

  • arg0

  • arg1

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

Greater than or equal numerical comparison.

  • arg0

  • arg1

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

Bitwise left shift.

  • arg0

  • arg1

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

Less than numerical comparison.

  • arg0

  • arg1

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

Less than or equal numerical comparison.

  • arg0

  • arg1

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

Numerical modulo operator.

  • arg0

  • arg1

Returns: The remainder of arg0 divided by arg1

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

Numerical multiplication.

  • arg0

  • arg1

Boolean negation operator.

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

Inequality comparison.

  • arg0

  • arg1

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

Boolean or operator.

  • arg0

  • arg1

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

Numerical power operator.

  • arg0

  • arg1

Returns: arg0 raised to the power of arg1

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

Bitwise right shift.

  • arg0

  • arg1

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

Numerical subtraction.

  • arg0

  • arg1

Link to this function to_double(conn, arg)

Convert to a double type.

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

Convert to a float type.

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

Convert to an int type.

  • arg