Interface infixModel.IBinOp


public interface IBinOp
extends Object
Represents a binary operation (operation on two numbers)


Method Index

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

Methods

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