Filter-Mode-Interface.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <html lang="en">
  2. <head>
  3. <title>Filter Mode Interface - avram - a virtual machine code interpreter</title>
  4. <meta http-equiv="Content-Type" content="text/html">
  5. <meta name="description" content="avram - a virtual machine code interpreter">
  6. <meta name="generator" content="makeinfo 4.13">
  7. <link title="Top" rel="start" href="index.html#Top">
  8. <link rel="up" href="Virtual-Machine-Specification.html#Virtual-Machine-Specification" title="Virtual Machine Specification">
  9. <link rel="prev" href="Representation-of-Numeric-and-Textual-Data.html#Representation-of-Numeric-and-Textual-Data" title="Representation of Numeric and Textual Data">
  10. <link rel="next" href="Parameter-Mode-Interface.html#Parameter-Mode-Interface" title="Parameter Mode Interface">
  11. <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
  12. <meta http-equiv="Content-Style-Type" content="text/css">
  13. <style type="text/css"><!--
  14. pre.display { font-family:inherit }
  15. pre.format { font-family:inherit }
  16. pre.smalldisplay { font-family:inherit; font-size:smaller }
  17. pre.smallformat { font-family:inherit; font-size:smaller }
  18. pre.smallexample { font-size:smaller }
  19. pre.smalllisp { font-size:smaller }
  20. span.sc { font-variant:small-caps }
  21. span.roman { font-family:serif; font-weight:normal; }
  22. span.sansserif { font-family:sans-serif; font-weight:normal; }
  23. --></style>
  24. </head>
  25. <body>
  26. <div class="node">
  27. <a name="Filter-Mode-Interface"></a>
  28. <p>
  29. Next:&nbsp;<a rel="next" accesskey="n" href="Parameter-Mode-Interface.html#Parameter-Mode-Interface">Parameter Mode Interface</a>,
  30. Previous:&nbsp;<a rel="previous" accesskey="p" href="Representation-of-Numeric-and-Textual-Data.html#Representation-of-Numeric-and-Textual-Data">Representation of Numeric and Textual Data</a>,
  31. Up:&nbsp;<a rel="up" accesskey="u" href="Virtual-Machine-Specification.html#Virtual-Machine-Specification">Virtual Machine Specification</a>
  32. <hr>
  33. </div>
  34. <h3 class="section">2.5 Filter Mode Interface</h3>
  35. <p><a name="index-filter-mode-171"></a><a name="index-parameter-mode-172"></a><a name="index-modes-173"></a>From the point of view of the application developer or compiler writer,
  36. there are parameter mode applications, which are discussed in
  37. <a href="Parameter-Mode-Interface.html#Parameter-Mode-Interface">Parameter Mode Interface</a>, and filter mode applications,
  38. which are discussed in this section. Of the latter, there are mainly
  39. three kinds: those that read one character at a time, those that read a
  40. line at a time, and those that read the whole standard input file at
  41. <a name="index-standard-input-174"></a>once. Each of them is invoked with different options and expected to
  42. follow different calling conventions. This section summarizes these
  43. conventions.
  44. <ul class="menu">
  45. <li><a accesskey="1" href="Loading-All-of-Standard-Input-at-Once.html#Loading-All-of-Standard-Input-at-Once">Loading All of Standard Input at Once</a>
  46. <li><a accesskey="2" href="Line-Maps.html#Line-Maps">Line Maps</a>
  47. <li><a accesskey="3" href="Byte-Transducers.html#Byte-Transducers">Byte Transducers</a>
  48. </ul>
  49. </body></html>