1 23 24 package org.objectweb.medor.expression.api; 25 26 30 public interface UnaryArithmeticOperator extends UnaryOperator { 31 32 37 int evaluate(byte op) throws TypingException; 38 39 44 int evaluate(short op) throws TypingException; 45 46 51 int evaluate(int op) throws TypingException; 52 53 58 long evaluate(long op) throws TypingException; 59 60 65 float evaluate(float op) throws TypingException; 66 67 72 double evaluate(double op) throws TypingException; 73 } 74 | Popular Tags |