Supplier<T1, T2, TResult> public struct Supplier<T1, T2, TResult> : ISupplier<T1, T2, TResult> Represents typed function pointer implementing ISupplier<T, U, V>. Documentation Code 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>.