Operations<T>.PowN Property

Note: This API is now obsolete.
Gets a delegate that raises a value to the specified power.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the Pow method instead.")]
public static Func<T, int, T> PowN { get; }

Property Value

Func<T, Int32, T>

Remarks

A NotSupportedException should be thrown if the exponent is negative and the operand type does not support division.

See Also