anl.aida.formula
Class FormulaArray.Multiplier

java.lang.Object
  extended by anl.aida.formula.FormulaArray.Multiplier
All Implemented Interfaces:
BinaryDoubleFunction
Enclosing class:
FormulaArray

private static class FormulaArray.Multiplier
extends java.lang.Object
implements BinaryDoubleFunction


Constructor Summary
private FormulaArray.Multiplier()
           
 
Method Summary
 double apply(double val1, double val2)
          Apply some function to the specified doubles and return the result.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FormulaArray.Multiplier

private FormulaArray.Multiplier()
Method Detail

apply

public double apply(double val1,
                    double val2)
Description copied from interface: BinaryDoubleFunction
Apply some function to the specified doubles and return the result. For example, addition.

Specified by:
apply in interface BinaryDoubleFunction
Parameters:
val1 - the first value to operation on
val2 - the second value to operation on
Returns:
the result of the operation.