T1 - The type of the first parameter of the
method that this function object encapsulates.T2 - The type of the second parameter of the
method that this function object encapsulates.TResult - The return type of the method that
this function object encapsulates.public class UnaryDivide<T1,T2,TResult> extends java.lang.Object implements IFunc1Arg<T1,TResult>
| Modifier and Type | Field and Description |
|---|---|
protected IArithmetic<T1,T2,TResult> |
adaptor
The arithmetic adaptor.
|
| Constructor and Description |
|---|
UnaryDivide(java.lang.Class<T1> t1,
java.lang.Class<T2> t2,
java.lang.Class<TResult> result,
T2 value)
Constructs a UnaryDivide function object from a specified
value that is convertible to T1 and T2.
|
protected IArithmetic<T1,T2,TResult> adaptor
public UnaryDivide(java.lang.Class<T1> t1, java.lang.Class<T2> t2, java.lang.Class<TResult> result, T2 value)
t1 - The specified Class<T1> type of the dividend.t2 - The specified Class<T2> type of the divisor.result - The specified Class<TResult> type of the result
(quotient).value - The underlying value that is to divide the
function's argument (the divisor).Copyright© 2012 Progeneric Systems, Inc. All Rights Reserved.