Power Operators and Type Conversions

Operators

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

See Also