2 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml">
5 <title>IO - load various IO modules
</title>
6 <meta http-equiv=
"content-type" content=
"text/html; charset=utf-8" />
7 <link rev=
"made" href=
"mailto:" />
10 <body style=
"background-color: white">
11 <table border=
"0" width=
"100%" cellspacing=
"0" cellpadding=
"3">
12 <tr><td class=
"block" style=
"background-color: #cccccc" valign=
"middle">
13 <big><strong><span class=
"block"> IO - load various IO modules
</span></strong></big>
17 <p><a name=
"__index__"></a></p>
22 <li><a href=
"#name">NAME
</a></li>
23 <li><a href=
"#synopsis">SYNOPSIS
</a></li>
24 <li><a href=
"#description">DESCRIPTION
</a></li>
25 <li><a href=
"#deprecated">DEPRECATED
</a></li>
32 <h1><a name=
"name">NAME
</a></h1>
33 <p>IO - load various IO modules
</p>
37 <h1><a name=
"synopsis">SYNOPSIS
</a></h1>
39 use IO qw(Handle File); # loads IO modules, here IO::Handle, IO::File
40 use IO; # DEPRECATED
</pre>
44 <h1><a name=
"description">DESCRIPTION
</a></h1>
45 <p><code>IO
</code> provides a simple mechanism to load several of the IO modules
46 in one go. The IO modules belonging to the core are:
</p>
56 <p>Some other IO modules don't belong to the perl core but can be loaded
57 as well if they have been installed from CPAN. You can discover which
58 ones exist by searching for ``^IO::'' on
<a href=
"http://search.cpan.org.">http://search.cpan.org.
</a></p>
59 <p>For more information on any of these modules, please see its respective
64 <h1><a name=
"deprecated">DEPRECATED
</a></h1>
66 use IO; # loads all the modules listed below
</pre>
67 <p>The loaded modules are IO::Handle, IO::Seekable, IO::File, IO::Pipe,
68 IO::Socket, IO::Dir. You should instead explicitly import the IO
70 <table border=
"0" width=
"100%" cellspacing=
"0" cellpadding=
"3">
71 <tr><td class=
"block" style=
"background-color: #cccccc" valign=
"middle">
72 <big><strong><span class=
"block"> IO - load various IO modules
</span></strong></big>