T - the input typepublic interface HasPow<T>
pow(int) methods for getting the
result of the current expression raised to a particular power.| Modifier and Type | Method and Description |
|---|---|
ToDouble<T> |
pow(double power)
Creates and returns an expression that returns the exponential power of
the result from the current expression.
|
ToDouble<T> |
pow(int power)
Creates and returns an expression that returns the exponential power of
the result from the current expression.
|
ToDouble<T> |
pow(ToDouble<T> power)
Creates and returns an expression that returns the exponential power of
the result from the current expression.
|
ToDouble<T> |
pow(ToInt<T> power)
Creates and returns an expression that returns the exponential power of
the result from the current expression.
|
ToDouble<T> pow(int power)
-3 and the power was set to 2,
then the result of the returned expression would be 9.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
power - the power to use as the exponentToDouble<T> pow(double power)
-3 and the power was set to 2,
then the result of the returned expression would be 9.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
power - the power to use as the exponentToDouble<T> pow(ToInt<T> power)
-3 and the power was set to 2,
then the result of the returned expression would be 9.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
power - the power to use as the exponentToDouble<T> pow(ToDouble<T> power)
-3 and the power was set to 2,
then the result of the returned expression would be 9.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
power - the power to use as the exponentCopyright © 2019 Speedment, Inc.. All rights reserved.