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