Artifact 0cdf14a9c2f8a753ab6426b3191f0bcb79189b850587dd1132e034ebe32e48f9:
- Executable file
r37/lisp/csl/html/r37_0091.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 679) [annotate] [blame] [check-ins using] [more...]
<A NAME=MIN> <TITLE>MIN</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>MIN</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The operator <em>min</em> is an n-ary prefix operator, which returns the smallest value in its arguments. <P> <H3> syntax: </H3> <P> <P> <em>min</em>(<expression>{,<expression>}*) <P> <P> <P> <expression> must evaluate to a number. <em>min</em> of an empty list returns 0. <P> <H3> examples: </H3> <P><PRE><TT> min(-3,0,17,2); -3 <<a := 23;b := 2*a;c := 4**2;min(a,b,c)>>; 16 min(5,10,a); 5 </TT></PRE><P><P> <P>