Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > d07d7ab417d79053e7e0155c99e1a1c8 > files > 2244

mlton-20100608-3.fc15.i686.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="robots" content="index,nofollow">



<title>ForLoops - MLton Standard ML Compiler (SML Compiler)</title>
<link rel="stylesheet" type="text/css" charset="iso-8859-1" media="all" href="common.css">
<link rel="stylesheet" type="text/css" charset="iso-8859-1" media="screen" href="screen.css">
<link rel="stylesheet" type="text/css" charset="iso-8859-1" media="print" href="print.css">


<link rel="Start" href="Home">


</head>

<body lang="en" dir="ltr">

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-833377-1";
urchinTracker();
</script>
<table bgcolor = lightblue cellspacing = 0 style = "border: 0px;" width = 100%>
  <tr>
    <td style = "
		border: 0px;
		color: darkblue; 
		font-size: 150%;
		text-align: left;">
      <a class = mltona href="Home">MLton MLTONWIKIVERSION</a>
    <td style = "
		border: 0px;
		font-size: 150%;
		text-align: center;
		width: 50%;">
      ForLoops
    <td style = "
		border: 0px;
		text-align: right;">
      <table cellspacing = 0 style = "border: 0px">
        <tr style = "vertical-align: middle;">
      </table>
  <tr style = "background-color: white;">
    <td colspan = 3
	style = "
		border: 0px;
		font-size:70%;
		text-align: right;">
      <a href = "Home">Home</a>
      &nbsp;<a href = "TitleIndex">Index</a>
      &nbsp;
</table>
<div id="content" lang="en" dir="ltr">
A <tt>for</tt>-loop is typically used to iterate over a range of consecutive integers that denote indices of some sort.  For example, in <a href="OCaml">OCaml</a> a <tt>for</tt>-loop takes either the form 
<pre>for &lt;name&gt; = &lt;lower&gt; to &lt;upper&gt; do &lt;body&gt; done
</pre>or the form 
<pre>for &lt;name&gt; = &lt;upper&gt; downto &lt;lower&gt; do &lt;body&gt; done
</pre>Some languages provide considerably more flexible <tt>for</tt>-loop or <tt>foreach</tt>-constructs. <p>
A bit surprisingly, <a href="StandardML">Standard ML</a> provides special syntax for <tt>while</tt>-loops, but not for <tt>for</tt>-loops.  Indeed, in SML, many uses of <tt>for</tt>-loops are better expressed using <tt>app</tt>, <tt>foldl/foldr</tt>, <tt>map</tt> and many other higher-order functions provided by the <a href="BasisLibrary">Basis Library</a> for manipulating lists, vectors and arrays.  However, the Basis Library does not provide a function for iterating over a range of integer values.  Fortunately, it is very easy to write one. 
</p>
<h2 id="head-256b31fc11b749803c8295d4ec8da28712f04f19">A fairly simple design</h2>
<p>
The following implementation imitates both the syntax and semantics of the OCaml <tt>for</tt>-loop. 
</p>

<pre class=code>
<B><FONT COLOR="#A020F0">datatype</FONT></B><B><FONT COLOR="#228B22"> for </FONT></B>=<B><FONT COLOR="#228B22"> <FONT COLOR="#B8860B">to</FONT> <B><FONT COLOR="#A020F0">of</FONT></B> int * int
             </FONT></B>|<B><FONT COLOR="#228B22"> <FONT COLOR="#B8860B">downto</FONT> <B><FONT COLOR="#A020F0">of</FONT></B> int * int

</FONT></B><B><FONT COLOR="#A020F0">infix</FONT></B> to downto

<B><FONT COLOR="#A020F0">val</FONT></B> for =
    <B><FONT COLOR="#A020F0">fn</FONT></B> lo to up =&gt;
       (<B><FONT COLOR="#A020F0">fn</FONT></B> f =&gt; <B><FONT COLOR="#0000FF">let</FONT></B> <B><FONT COLOR="#A020F0">fun</FONT></B> loop lo = <B><FONT COLOR="#A020F0">if</FONT></B> lo &gt; up <B><FONT COLOR="#A020F0">then</FONT></B> ()
                                  <B><FONT COLOR="#A020F0">else</FONT></B> (f lo; loop (lo+<B><FONT COLOR="#5F9EA0">1</FONT></B>))
                <B><FONT COLOR="#0000FF">in</FONT></B> loop lo <B><FONT COLOR="#0000FF">end</FONT></B>)
     | up downto lo =&gt;
       (<B><FONT COLOR="#A020F0">fn</FONT></B> f =&gt; <B><FONT COLOR="#0000FF">let</FONT></B> <B><FONT COLOR="#A020F0">fun</FONT></B> loop up = <B><FONT COLOR="#A020F0">if</FONT></B> up &lt; lo <B><FONT COLOR="#A020F0">then</FONT></B> ()
                                  <B><FONT COLOR="#A020F0">else</FONT></B> (f up; loop (up-<B><FONT COLOR="#5F9EA0">1</FONT></B>))
                <B><FONT COLOR="#0000FF">in</FONT></B> loop up <B><FONT COLOR="#0000FF">end</FONT></B>)
</PRE>
<p>
 
</p>
<p>
For example, 
<pre class=code>
for (<B><FONT COLOR="#5F9EA0">1</FONT></B> to <B><FONT COLOR="#5F9EA0">9</FONT></B>)
    (<B><FONT COLOR="#A020F0">fn</FONT></B> i =&gt; print (Int.toString i))
</PRE>
 would print <tt>123456789</tt> and 
<pre class=code>
for (<B><FONT COLOR="#5F9EA0">9</FONT></B> downto <B><FONT COLOR="#5F9EA0">1</FONT></B>)
    (<B><FONT COLOR="#A020F0">fn</FONT></B> i =&gt; print (Int.toString i))
</PRE>
 would print <tt>987654321</tt>. 
</p>
<p>
Straightforward formatting of nested loops 
<pre class=code>
for (a to b)
    (<B><FONT COLOR="#A020F0">fn</FONT></B> i =&gt;
        for (c to d)
            (<B><FONT COLOR="#A020F0">fn</FONT></B> j =&gt;
                ...))
</PRE>
 is fairly readable, but tends to cause the body of the loop to be indented quite deeply. 
</p>
<h2 id="head-db5cb13e652c830a05ed522c82b38855adf3f29d">Off-by-one</h2>
<p>
The above design has an annoying feature.  In practice, the upper bound of the iterated range is almost always excluded and most loops would subtract one from the upper bound: 
<pre class=code>
for (<B><FONT COLOR="#5F9EA0">0</FONT></B> to n-<B><FONT COLOR="#5F9EA0">1</FONT></B>) ...
for (n-<B><FONT COLOR="#5F9EA0">1</FONT></B> downto <B><FONT COLOR="#5F9EA0">0</FONT></B>) ...
</PRE>
 It is probably better to break convention and exclude the upper bound by default, because it leads to more concise code and becomes idiomatic with very little practice.  The iterator combinators described below exclude the upper bound by default. 
</p>
<h2 id="head-a43056e62b4e6692169c07351860dd6bb04042d0">Iterator combinators</h2>
<p>
While the simple <tt>for</tt>-function described in the previous section is probably good enough for many uses, it is a bit cumbersome when one needs to iterate over a Cartesian product.  One might also want to iterate over more than just consecutive integers.  It turns out that one can provide a library of iterator combinators that allow one to implement iterators more flexibly. 
</p>
<p>
Since the types of the combinators may be a bit difficult to infer from their implementations, let's first take a look at a signature of the iterator combinator library: 
<pre class=code>
<B><FONT COLOR="#0000FF">signature</FONT></B> ITER =
  <B><FONT COLOR="#0000FF">sig</FONT></B>
    <B><FONT COLOR="#A020F0">type</FONT></B><B><FONT COLOR="#228B22"> 'a t </FONT></B>=<B><FONT COLOR="#228B22"> ('a -&gt; unit) -&gt; unit

    </FONT></B><B><FONT COLOR="#A020F0">val</FONT></B> return : 'a -&gt; 'a t
    <B><FONT COLOR="#A020F0">val</FONT></B> &gt;&gt;= : 'a t * ('a -&gt; 'b t) -&gt; 'b t

    <B><FONT COLOR="#A020F0">val</FONT></B> none : 'a t

    <B><FONT COLOR="#A020F0">val</FONT></B> to : int * int -&gt; int t
    <B><FONT COLOR="#A020F0">val</FONT></B> downto : int * int -&gt; int t

    <B><FONT COLOR="#A020F0">val</FONT></B> inList : 'a list -&gt; 'a t
    <B><FONT COLOR="#A020F0">val</FONT></B> inVector : 'a vector -&gt; 'a t
    <B><FONT COLOR="#A020F0">val</FONT></B> inArray : 'a array -&gt; 'a t

    <B><FONT COLOR="#A020F0">val</FONT></B> using : ('a, 'b) StringCvt.reader -&gt; 'b -&gt; 'a t

    <B><FONT COLOR="#A020F0">val</FONT></B> when : 'a t * ('a -&gt; bool) -&gt; 'a t
    <B><FONT COLOR="#A020F0">val</FONT></B> by : 'a t * ('a -&gt; 'b) -&gt; 'b t
    <B><FONT COLOR="#A020F0">val</FONT></B> @@ : 'a t * 'a t -&gt; 'a t
    <B><FONT COLOR="#A020F0">val</FONT></B> ** : 'a t * 'b t -&gt; ('a, 'b) product t

    <B><FONT COLOR="#A020F0">val</FONT></B> for : 'a -&gt; 'a
  <B><FONT COLOR="#0000FF">end</FONT></B>
</PRE>
 
</p>
<p>
Several of the above combinators are meant to be used as infix operators. Here is a set of suitable infix declarations: 
<pre class=code>
<B><FONT COLOR="#A020F0">infix</FONT></B> 2 to downto
<B><FONT COLOR="#A020F0">infix</FONT></B> 1 @@ when by
<B><FONT COLOR="#A020F0">infix</FONT></B> 0 &gt;&gt;= **
</PRE>
 
</p>
<p>
A few notes are in order: 
</p>

        <ul>

        <li>
<p>
 The <tt>'a&nbsp;t</tt> type constructor with the <tt>return</tt> and <tt>&gt;&gt;=</tt>   operators forms a monad. 
</p>
</li>
        <li>
<p>
 The <tt>to</tt> and <tt>downto</tt> combinators will omit the upper bound of   the range. 
</p>
</li>
        <li>
<p>
 <tt>for</tt> is the identity function.  It is purely for syntactic sugar   and is not strictly required. 
</p>
</li>
        <li>
<p>
 The <tt>@@</tt> combinator produces an iterator for the concatenation of   the given iterators. 
</p>
</li>
        <li>
<p>
 The <tt>**</tt> combinator produces an iterator for the Cartesian product   of the given iterators. 
</p>
</li>

                <ul>

                <li>
<p>
 See <a href="ProductType">ProductType</a> for the type constructor <tt>('a,&nbsp;'b)&nbsp;product</tt> used     in the type of the iterator produced by <tt>**</tt>. 
</p>
</li>

                </ul>


        <li>
<p>
 The <tt>using</tt> combinator allows one to iterate over slices, streams   and many other kinds of sequences. 
</p>
</li>
        <li>
<p>
 <tt>when</tt> is the filtering combinator.  The name <tt>when</tt> is   inspired by <a href="OCaml">OCaml</a>'s guard clauses. 
</p>
</li>
        <li>
<p>
 <tt>by</tt> is the mapping combinator. 
</p>
</li>

        </ul>


<p>
The below implementation of the <tt>ITER</tt>-signature makes use of the following basic combinators: 
<pre class=code>
<B><FONT COLOR="#A020F0">fun</FONT></B> const x _ = x
<B><FONT COLOR="#A020F0">fun</FONT></B> flip f x y = f y x
<B><FONT COLOR="#A020F0">fun</FONT></B> id x = x
<B><FONT COLOR="#A020F0">fun</FONT></B> opt fno fso = <B><FONT COLOR="#A020F0">fn</FONT></B> NONE =&gt; fno () | SOME ? =&gt; fso ?
<B><FONT COLOR="#A020F0">fun</FONT></B> pass x f = f x
</PRE>
 
</p>
<p>
Here is an implementation the <tt>ITER</tt>-signature: 
<pre class=code>
<B><FONT COLOR="#0000FF">structure</FONT></B> Iter :&gt; ITER =
  <B><FONT COLOR="#0000FF">struct</FONT></B>
    <B><FONT COLOR="#A020F0">type</FONT></B><B><FONT COLOR="#228B22"> 'a t </FONT></B>=<B><FONT COLOR="#228B22"> ('a -&gt; unit) -&gt; unit

    </FONT></B><B><FONT COLOR="#A020F0">val</FONT></B> return = pass
    <B><FONT COLOR="#A020F0">fun</FONT></B> (iA &gt;&gt;= a2iB) f = iA (flip a2iB f)

    <B><FONT COLOR="#A020F0">val</FONT></B> none = ignore

    <B><FONT COLOR="#A020F0">fun</FONT></B> (l to u) f = <B><FONT COLOR="#A020F0">let</FONT></B> <B><FONT COLOR="#A020F0">fun</FONT></B> `l = <B><FONT COLOR="#A020F0">if</FONT></B> l&lt;u <B><FONT COLOR="#A020F0">then</FONT></B> (f l; `(l+<B><FONT COLOR="#5F9EA0">1</FONT></B>)) <B><FONT COLOR="#A020F0">else</FONT></B> () <B><FONT COLOR="#A020F0">in</FONT></B> `l <B><FONT COLOR="#A020F0">end</FONT></B>
    <B><FONT COLOR="#A020F0">fun</FONT></B> (u downto l) f = <B><FONT COLOR="#A020F0">let</FONT></B> <B><FONT COLOR="#A020F0">fun</FONT></B> `u = <B><FONT COLOR="#A020F0">if</FONT></B> u&gt;l <B><FONT COLOR="#A020F0">then</FONT></B> (f (u-<B><FONT COLOR="#5F9EA0">1</FONT></B>); `(u-<B><FONT COLOR="#5F9EA0">1</FONT></B>)) <B><FONT COLOR="#A020F0">else</FONT></B> () <B><FONT COLOR="#A020F0">in</FONT></B> `u <B><FONT COLOR="#A020F0">end</FONT></B>

    <B><FONT COLOR="#A020F0">fun</FONT></B> inList ? = flip List.app ?
    <B><FONT COLOR="#A020F0">fun</FONT></B> inVector ? = flip Vector.app ?
    <B><FONT COLOR="#A020F0">fun</FONT></B> inArray ? = flip Array.app ?

    <B><FONT COLOR="#A020F0">fun</FONT></B> using get s f = <B><FONT COLOR="#A020F0">let</FONT></B> <B><FONT COLOR="#A020F0">fun</FONT></B> `s = opt (const ()) (<B><FONT COLOR="#A020F0">fn</FONT></B> (x, s) =&gt; (f x; `s)) (get s) <B><FONT COLOR="#A020F0">in</FONT></B> `s <B><FONT COLOR="#A020F0">end</FONT></B>

    <B><FONT COLOR="#A020F0">fun</FONT></B> (iA when p) f = iA (<B><FONT COLOR="#A020F0">fn</FONT></B> a =&gt; <B><FONT COLOR="#A020F0">if</FONT></B> p a <B><FONT COLOR="#A020F0">then</FONT></B> f a <B><FONT COLOR="#A020F0">else</FONT></B> ())
    <B><FONT COLOR="#A020F0">fun</FONT></B> (iA by g) f = iA (f o g)
    <B><FONT COLOR="#A020F0">fun</FONT></B> (iA @@ iB) f = (iA f : unit; iB f)
    <B><FONT COLOR="#A020F0">fun</FONT></B> (iA ** iB) f = iA (<B><FONT COLOR="#A020F0">fn</FONT></B> a =&gt; iB (<B><FONT COLOR="#A020F0">fn</FONT></B> b =&gt; f (a &amp; b)))

    <B><FONT COLOR="#A020F0">val</FONT></B> for = id
  <B><FONT COLOR="#0000FF">end</FONT></B>
</PRE>
 
</p>
<p>
Note that some of the above combinators (e.g. <tt>**</tt>) could be expressed in terms of the other combinators, most notably <tt>return</tt> and <tt>&gt;&gt;=</tt>.  Another implementation issue worth mentioning is that <tt>downto</tt> is written specifically to avoid computing <tt>l-1</tt>, which could cause an <tt>Overflow</tt>. 
</p>
<p>
To use the above combinators the <tt>Iter</tt>-structure needs to be opened 
<pre class=code>
<B><FONT COLOR="#0000FF">open</FONT></B> Iter
</PRE>
 and one usually also wants to declare the infix status of the operators as shown earlier. 
</p>
<p>
Here is an example that illustrates some of the features: 
<pre class=code>
for (<B><FONT COLOR="#5F9EA0">0</FONT></B> to <B><FONT COLOR="#5F9EA0">10</FONT></B> when (<B><FONT COLOR="#A020F0">fn</FONT></B> x =&gt; x mod <B><FONT COLOR="#5F9EA0">3</FONT></B> &lt;&gt; <B><FONT COLOR="#5F9EA0">0</FONT></B>) ** inList [<B><FONT COLOR="#BC8F8F">&quot;a&quot;</FONT></B>, <B><FONT COLOR="#BC8F8F">&quot;b&quot;</FONT></B>] ** <B><FONT COLOR="#5F9EA0">2</FONT></B> downto <B><FONT COLOR="#5F9EA0">1</FONT></B> by real)
    (<B><FONT COLOR="#A020F0">fn</FONT></B> x &amp; y &amp; z =&gt;
       print (<B><FONT COLOR="#BC8F8F">&quot;(&quot;</FONT></B>^Int.toString x^<B><FONT COLOR="#BC8F8F">&quot;, \&quot;&quot;</FONT></B>^y^<B><FONT COLOR="#BC8F8F">&quot;\&quot;, &quot;</FONT></B>^Real.toString z^<B><FONT COLOR="#BC8F8F">&quot;)\n&quot;</FONT></B>))
</PRE>
 
</p>
<p>
Using the <tt>Iter</tt> combinators one can easily produce more complicated iterators.  For example, here is an iterator over a "triangle": 
<pre class=code>
<B><FONT COLOR="#A020F0">fun</FONT></B> triangle (l, u) = l to u &gt;&gt;= (<B><FONT COLOR="#A020F0">fn</FONT></B> i =&gt; i to u &gt;&gt;= (<B><FONT COLOR="#A020F0">fn</FONT></B> j =&gt; return (i, j)))
</PRE>
 
</p>
</div>



<p>
<hr>
Last edited on 2007-08-15 22:06:21 by <span title="fenrir.uchicago.edu"><a href="MatthewFluet">MatthewFluet</a></span>.
</body></html>