Length Operators and Type Conversions

Operators

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

See Also