DotNext by Roman Sakno

<PackageReference Include="DotNext" Version="3.2.1" />

.NET API 366,080 bytes

 Supplier<T1, T2, TResult>

public struct Supplier<T1, T2, TResult> : ISupplier<T1, T2, TResult>
Represents typed function pointer implementing ISupplier<T, U, V>.
public bool IsEmpty { get; }

Gets a value indicating that this function pointer is zero.

public Supplier(method ptr)

public static Func<T1, T2, TResult> op_Explicit(Supplier<T1, T2, TResult> supplier)

Converts this supplier to the delegate of type Func<T, U, V>.

public static Supplier<T1, T2, TResult> op_Implicit(method ptr)

public Func<T1, T2, TResult> ToDelegate()

Converts this supplier to the delegate of type Func<T, U, V>.