Artifact 6d767cc628759defb5171bc10b2f3ec577d8e507be160a1594595810f1abf040:
- Executable file
r37/lisp/csl/html/r37_0303.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: 934) [annotate] [blame] [check-ins using] [more...]
<A NAME=LISTARGS> <TITLE>LISTARGS</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>LISTARGS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P> <P> <P> <P> If an operator other than those specifically defined for lists is given a single argument that is a list, then the result of this operation will be a list in which that operator is applied to each element of the list. This process can be inhibited globally by turning on the switch <em>listargs</em>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> log {a,b,c}; LOG(A),LOG(B),LOG(C) on listargs; log {a,b,c}; LOG(A,B,C) </TT></PRE><P>It is possible to inhibit such distribution for a specific operato r by using the declaration <A HREF=r37_0203.html>listargp</A>. In addition, if an operator has more than one argument, no such distribution occurs, so <em>listargs</em> has no effect. <P> <P> <P>