perl 5.003_04: ext/IO/lib/IO/File.pm
[p5sagit/p5-mst-13.2.git] / ext / IO / IO.pm
CommitLineData
8add82fc 1#
2
3package IO;
4
5use IO::Handle;
6use IO::Seekable;
7use IO::File;
8use IO::Pipe;
9use IO::Socket;
10
111;
12
84dc3c4d 13=head1 NAME
14
15IO - load various IO modules
16
17=head1 SYNOPSIS
18
19 use IO;
20
21=head1 DESCRIPTION
22
23C<IO> provides a simple mechanism to load all of the IO modules at one go.
24Currently this includes:
25
26 IO::Handle
27 IO::Seekable
28 IO::File
29 IO::Pipe
30 IO::Socket
31
32For more information on any of these modules, please see its respective
33documentation.
34
35=cut