123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <html lang="en">
- <head>
- <title>List Functions - avram - a virtual machine code interpreter</title>
- <meta http-equiv="Content-Type" content="text/html">
- <meta name="description" content="avram - a virtual machine code interpreter">
- <meta name="generator" content="makeinfo 4.13">
- <link title="Top" rel="start" href="index.html#Top">
- <link rel="up" href="Virtual-Code-Semantics.html#Virtual-Code-Semantics" title="Virtual Code Semantics">
- <link rel="prev" href="List-Combinators.html#List-Combinators" title="List Combinators">
- <link rel="next" href="Exception-Handling.html#Exception-Handling" title="Exception Handling">
- <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
- <meta http-equiv="Content-Style-Type" content="text/css">
- <style type="text/css"><!--
- pre.display { font-family:inherit }
- pre.format { font-family:inherit }
- pre.smalldisplay { font-family:inherit; font-size:smaller }
- pre.smallformat { font-family:inherit; font-size:smaller }
- pre.smallexample { font-size:smaller }
- pre.smalllisp { font-size:smaller }
- span.sc { font-variant:small-caps }
- span.roman { font-family:serif; font-weight:normal; }
- span.sansserif { font-family:sans-serif; font-weight:normal; }
- --></style>
- </head>
- <body>
- <div class="node">
- <a name="List-Functions"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="Exception-Handling.html#Exception-Handling">Exception Handling</a>,
- Previous: <a rel="previous" accesskey="p" href="List-Combinators.html#List-Combinators">List Combinators</a>,
- Up: <a rel="up" accesskey="u" href="Virtual-Code-Semantics.html#Virtual-Code-Semantics">Virtual Code Semantics</a>
- <hr>
- </div>
- <h4 class="subsection">2.7.14 List Functions</h4>
- <p>In addition to the foregoing list operations, the virtual machine
- <a name="index-lists-341"></a>provides a number of canned functions operating on lists, namely
- concatenation, reversal, distribution, and transposition. These
- functions could be coded by other means if they were not built in, but
- the built in versions are faster and smaller.
- <ul class="menu">
- <li><a accesskey="1" href="Cat.html#Cat">Cat</a>
- <li><a accesskey="2" href="Reverse.html#Reverse">Reverse</a>
- <li><a accesskey="3" href="Distribute.html#Distribute">Distribute</a>
- <li><a accesskey="4" href="Transpose.html#Transpose">Transpose</a>
- </ul>
- </body></html>
|