Lines Matching full:io
3 package IO;
11 XSLoader::load 'IO', $VERSION;
16 warnings::warnif('deprecated', qq{Parameterless "use IO" deprecated})
23 eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
33 IO - load various IO modules
37 use IO qw(Handle File); # loads IO modules, here IO::Handle, IO::File
38 use IO; # DEPRECATED
42 C<IO> provides a simple mechanism to load several of the IO modules
43 in one go. The IO modules belonging to the core are:
45 IO::Handle
46 IO::Seekable
47 IO::File
48 IO::Pipe
49 IO::Socket
50 IO::Dir
51 IO::Select
52 IO::Poll
54 Some other IO modules don't belong to the perl core but can be loaded
56 ones exist with this query: L<https://metacpan.org/search?q=IO%3A%3A>.
63 use IO; # loads all the modules listed below
65 The loaded modules are IO::Handle, IO::Seekable, IO::File, IO::Pipe,
66 IO::Socket, IO::Dir. You should instead explicitly import the IO