Interface infixModel.IBinOp
- public interface IBinOp
- extends Object
Represents a binary operation (operation on two numbers)

compute
(double, double)
- *Peform n1 "op" n2, and return the result

compute
public abstract double compute(double n1, double n2)
- *Peform n1 "op" n2, and return the result.