abs ( x y epsilon -- ? ) ([original](http://docs.factorcode.org/content/word-abs%2Cmath.functions.html)) (raw)

~abs ( x y epsilon -- ? )

Vocabulary
math.functions

Inputs

x an object
y an object
epsilon an object

Outputs

? an object

Definition

USING: kernel math ;

IN: math.functions

: ~abs ( x y epsilon -- ? ) [ - abs ] dip < ;