This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: useless use of void context work-around
[perl5.git] / ext / IO / IO.pm
CommitLineData
8add82fc 1#
2
3package IO;
4
9426adcd 5use XSLoader ();
cf7fe8a2
GS
6use Carp;
7
cf7fe8a2 8$VERSION = "1.20";
9426adcd 9XSLoader::load 'IO', $VERSION;
cf7fe8a2
GS
10
11sub import {
12 shift;
13 my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir);
14
15 eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
16 or croak $@;
17}
18
191;
20
21__END__
22
84dc3c4d 23=head1 NAME
24
25IO - load various IO modules
26
27=head1 SYNOPSIS
28
29 use IO;
30
31=head1 DESCRIPTION
32
7b8d334a 33C<IO> provides a simple mechanism to load some of the IO modules at one go.
84dc3c4d 34Currently this includes:
35
2a0cf753 36 IO::Handle
37 IO::Seekable
38 IO::File
39 IO::Pipe
40 IO::Socket
cf7fe8a2 41 IO::Dir
84dc3c4d 42
43For more information on any of these modules, please see its respective
44documentation.
45
46=cut
2a0cf753 47