]> gitweb.factorcode.org Git - factor.git/blobdiff - core/ranges/ranges.factor
sequences: change infimum/supremum to alias
[factor.git] / core / ranges / ranges.factor
index 007444abfcf456a0eb05bd012ccbbeb2c3776302..da78e6fcfef11756e4ef801ea23284b083868c53 100644 (file)
@@ -37,10 +37,10 @@ M: range sum
     [ drop 0 ]
     [ swap [ first-unsafe ] [ last-unsafe ] bi + * 2 / ] if-zero ;
 
-M: range infimum
+M: range minimum
     dup step>> 0 > [ first ] [ last ] if ;
 
-M: range supremum
+M: range maximum
     dup step>> 0 > [ last ] [ first ] if ;
 
 <PRIVATE