home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Open 13
/
pcopen13.iso
/
Zip
/
SM34A.ZIP
/
LIBRARY
/
ISLESS.LI
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-10-16
|
195 b
|
7 lines
# isless(a,b) gives 1 if a is less than b, 0 otherwise. It is extent
# of a < b.
# e.g. isless(1+i, 1-i) gives 0
# See also: islarger, isless, >, <.
isless(a_, b_) := issame(sign(b-a),1)