dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Abs.java
2017-03-24 00:30:41 +11:00

16 lines
285 B
Java

package com.bytezone.diskbrowser.visicalc;
public class Abs extends ValueFunction
{
Abs (Cell cell, String text)
{
super (cell, text);
assert text.startsWith ("@ABS(") : text;
}
@Override
double calculateValue ()
{
return Math.abs (source.getDouble ());
}
}