(O aObject)
| 56 | public Neg(IMath<O> aValue) {mValue = aValue;} |
| 57 | @Override public long getLong(O aObject) {return -mValue.getLong(aObject);} |
| 58 | @Override public double getDouble(O aObject) {return -mValue.getDouble(aObject);} |
| 59 | } |
| 60 | |
| 61 | public static class Ter<O> implements IMath<O> { |