IFastFunc2<T1, T2, TResult1, TResult2> Interface

Represents a function with two parameters that returns two results.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public interface IFastFunc2<in T1, in T2, TResult1, TResult2>

Type Parameters

T1
The type of the first parameter.
T2
The type of the second parameter.
TResult1
The type of the first result.
TResult2
The type of the second result.

Methods

Invoke Invokes the function.

See Also