SF bug 1060644. Better explanation of min() and max() methods. Thanks Raymond Hetting...
authorFacundo Batista <facundobatista@gmail.com>
Fri, 12 Nov 2004 02:03:36 +0000 (02:03 +0000)
committerFacundo Batista <facundobatista@gmail.com>
Fri, 12 Nov 2004 02:03:36 +0000 (02:03 +0000)
Doc/lib/libdecimal.tex

index d4126ac676ffaa155f3ea17778c259829e895799..dfa212a8fd91ad221cf9043a30117b06f8c3be91 100644 (file)
@@ -355,13 +355,17 @@ also have a number of specialized methods:
 \end{methoddesc}
 
 \begin{methoddesc}{max}{other\optional{, context}}
-  Like \samp{max(self, other)} but returns \constant{NaN} if either is a
-  \constant{NaN}.  Applies the context rounding rule before returning.
+  Like \samp{max(self, other)} except that the context rounding rule
+  is applied before returning and that \constant{NaN} values are
+  either signalled or ignored (depending on the context and whether
+  they are signaling or quiet).
 \end{methoddesc}
 
 \begin{methoddesc}{min}{other\optional{, context}}
-  Like \samp{min(self, other)} but returns \constant{NaN} if either is a
-  \constant{NaN}.  Applies the context rounding rule before returning.
+  Like \samp{min(self, other)} except that the context rounding rule
+  is applied before returning and that \constant{NaN} values are
+  either signalled or ignored (depending on the context and whether
+  they are signaling or quiet).
 \end{methoddesc}
 
 \begin{methoddesc}{normalize}{\optional{context}}