orc.runtime
Interface Args.NumericBinaryOperator<T>
- Enclosing class:
- Args
- public static interface Args.NumericBinaryOperator<T> 
A binary operator on numbers
| Method Summary | 
|  T | apply(java.math.BigDecimal a,
      java.math.BigDecimal b)
 | 
|  T | apply(java.math.BigInteger a,
      java.math.BigInteger b)
 | 
|  T | apply(byte a,
      byte b)
 | 
|  T | apply(double a,
      double b)
 | 
|  T | apply(float a,
      float b)
 | 
|  T | apply(int a,
      int b)
 | 
|  T | apply(long a,
      long b)
 | 
|  T | apply(short a,
      short b)
 | 
 
apply
T apply(java.math.BigInteger a,
        java.math.BigInteger b)
- 
 
apply
T apply(java.math.BigDecimal a,
        java.math.BigDecimal b)
- 
 
apply
T apply(int a,
        int b)
- 
 
apply
T apply(long a,
        long b)
- 
 
apply
T apply(byte a,
        byte b)
- 
 
apply
T apply(short a,
        short b)
- 
 
apply
T apply(double a,
        double b)
- 
 
apply
T apply(float a,
        float b)
-