IFastFunc<T, TResult> Interface

Represents a function with one parameter that returns a result.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public interface IFastFunc<in T, out TResult>

Type Parameters

T
The type of the first parameter.
TResult
The type of the result.

Methods

Invoke Invokes the function.

See Also