Speed Operators and Type Conversions

Operators

Addition(Speed, Speed) Returns computed sum of values.
Division(Speed, Speed) Returns computed division of values.
Equality(Speed, Speed) Compares the two values for equality.
Exponent(Speed, Speed) Returns result of first value raised to speed of second value.
GreaterThan(Speed, Speed) Returns true if left value is greater than right value.
GreaterThanOrEqual(Speed, Speed) Returns true if left value is greater than or equal to right value.
(Double to Speed) Implicitly converts value, represented in meters per second, to a Speed.
(Speed to Double) Implicitly converts Speed, represented in meters per second, to a Double.
Inequality(Speed, Speed) Compares the two values for inequality.
LessThan(Speed, Speed) Returns true if left value is less than right value.
LessThanOrEqual(Speed, Speed) Returns true if left value is less or equal to than right value.
Modulus(Speed, Speed) Returns computed remainder after dividing first value by the second.
Multiply(Speed, Speed) Returns computed product of values.
Subtraction(Speed, Speed) Returns computed difference of values.

See Also