factor/extra/math/compare/compare.factor

17 lines
333 B
Factor
Raw Normal View History

2008-11-07 01:24:32 -05:00
! Copyright (C) 2008 John Benediktsson.
2008-09-23 17:50:28 -04:00
! See http://factorcode.org/license.txt for BSD license
2008-09-23 17:36:21 -04:00
USING: math math.order kernel ;
2008-11-07 01:24:32 -05:00
IN: math.compare
2008-09-23 17:36:21 -04:00
2008-11-07 01:24:32 -05:00
: absmin ( a b -- x )
[ [ abs ] bi@ < ] 2keep ? ;
2008-09-23 17:36:21 -04:00
2008-11-07 01:24:32 -05:00
: absmax ( a b -- x )
[ [ abs ] bi@ > ] 2keep ? ;
2008-09-23 17:36:21 -04:00
2008-11-07 01:24:32 -05:00
: posmax ( a b -- x )
0 max max ;
2008-09-23 17:36:21 -04:00
2008-11-07 01:24:32 -05:00
: negmin ( a b -- x )
0 min min ;