Remove bogus note about flo:compare and flo:safe-compare.
authorTaylor R Campbell <campbell@mumble.net>
Fri, 30 Nov 2018 08:47:59 +0000 (08:47 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Fri, 30 Nov 2018 08:47:59 +0000 (08:47 +0000)
Never actually committed these; decided a four-way comparison wasn't
worth it without a motivating application.  Won't work for anything
that expects a three-way -1/0/+1 compare.

src/relnotes/flonum

index 2bac81afbdc345877f50f24a5c763138daeebeeb..f6f1b830676110dd881dc9cf9f27ede1da2aa116 100644 (file)
@@ -77,12 +77,6 @@ New flonum-related definitions:
 - (flo:<> x y) returns true if x is less or greater than y, false if
   equal or unordered, and raises invalid-operation exceptions on any
   NaNs.
-- (flo:compare x y) and (flo:safe-compare x y) return a four-way
-  comparison of two floating-point numbers: negative if x < y, zero if
-  x = y, positive if x > y, and #f if one or both arguments is NaN.
-  flo:compare raises invalid-operation exceptions on any NaN;
-  flo:safe-compare raises invalid-operations exceptions only on
-  signalling NaNs.
 - (flo:total< x y) is true if x < y in the total ordering defined in
   IEEE 754-2008 Sec. 5.10; (flo:total-order x y) is a three-way
   comparison, -1 if x < y, 0 if x = y, +1 if x > y.