Table of Contents

Class BiFunction<T, U, TReturn>

Namespace
Java.Util.Function
Assembly
MASES.JNet.dll
public class BiFunction<T, U, TReturn> : BiFunction, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IBiFunction<T, U, TReturn>, IJVMBridgeBase, IJVMBridgeDefinition

Type Parameters

T

The data type associated to the event

U

The data type associated to the event

TReturn

The return data type associated to the event

Inheritance
BiFunction<T, U, TReturn>
Implements
IBiFunction<T, U, TReturn>
Derived
Inherited Members
Extension Methods

Constructors

BiFunction()

Initialize a new instance of BiFunction<T, U, TReturn>

public BiFunction()

Properties

OnApply

The Func<T1, T2, TResult> to be executed

public virtual Func<T, U, TReturn> OnApply { get; set; }

Property Value

Func<T, U, TReturn>

Methods

Apply(T, U)

Executes the Function action in the CLR

public virtual TReturn Apply(T o1, U o2)

Parameters

o1 T

The BiFunction object

o2 U

The BiFunction object

Returns

TReturn

The apply TReturn