Class BinaryOperator<T>
Listener for Java BinaryOperator https://docs.oracle.com/javase/8/docs/api/java/util/function/BinaryOperator.html. Extends BinaryOperator
public class BinaryOperator<T> : BinaryOperator, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IBinaryOperator<T>, IJVMBridgeBase, IJVMBridgeDefinition
  Type Parameters
TThe data type associated to the event
- Inheritance
 - 
      
      
      
      
      
      
      BinaryOperator<T>
 
- Implements
 
- Derived
 
- Inherited Members
 - 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    JVMBridgeBase.ReferenceEqualsJVM(JVMBridgeBase, JVMBridgeBase)JVMBridgeBase.Equals(IJVMBridgeBase)
 
- Extension Methods
 
Constructors
BinaryOperator()
Initialize a new instance of BinaryOperator<T>
public BinaryOperator()
  Properties
OnApply
The Func<T, TResult> to be executed
public virtual Func<T, T, T> OnApply { get; set; }
  Property Value
- Func<T, T, T>
 
Methods
Apply(T, T)
Executes the Function action in the CLR
public virtual T Apply(T o1, T o2)
  Parameters
o1TThe Function object
o2TThe Function object
Returns
- T
 The apply
T