Lines Matching full:io
7570 all operations are supplied by table <a name="pdf-io"><code>io</code></a>.
7572 the operation <a href="#pdf-io.open"><code>io.open</code></a> returns a file descriptor
7577 The table <code>io</code> also provides
7579 <a name="pdf-io.stdin"><code>io.stdin</code></a>, <a name="pdf-io.stdout"><code>io.stdout</code></a…
7592 <hr><h3><a name="pdf-io.close"><code>io.close ([file])</code></a></h3>
7603 <hr><h3><a name="pdf-io.flush"><code>io.flush ()</code></a></h3>
7613 <hr><h3><a name="pdf-io.input"><code>io.input ([file])</code></a></h3>
7633 <hr><h3><a name="pdf-io.lines"><code>io.lines ([filename])</code></a></h3>
7644 for line in io.lines(filename) do <em>body</em> end
7652 The call <code>io.lines()</code> (with no file name) is equivalent
7653 to <code>io.input():lines()</code>;
7661 <hr><h3><a name="pdf-io.open"><code>io.open (filename [, mode])</code></a></h3>
7692 <hr><h3><a name="pdf-io.output"><code>io.output ([file])</code></a></h3>
7696 Similar to <a href="#pdf-io.input"><code>io.input</code></a>, but operates over the default output …
7702 <hr><h3><a name="pdf-io.popen"><code>io.popen (prog [, mode])</code></a></h3>
7721 <hr><h3><a name="pdf-io.read"><code>io.read (···)</code></a></h3>
7725 Equivalent to <code>io.input():read</code>.
7731 <hr><h3><a name="pdf-io.tmpfile"><code>io.tmpfile ()</code></a></h3>
7743 <hr><h3><a name="pdf-io.type"><code>io.type (obj)</code></a></h3>
7756 <hr><h3><a name="pdf-io.write"><code>io.write (···)</code></a></h3>
7760 Equivalent to <code>io.output():write</code>.
7802 (Unlike <a href="#pdf-io.lines"><code>io.lines</code></a>, this function does not close the file
7907 (see <a href="#pdf-io.flush"><code>io.flush</code></a>)).
8153 you may prefer to use <a href="#pdf-io.tmpfile"><code>io.tmpfile</code></a>,