📄 io.pm
字号:
#package IO;use XSLoader ();use Carp;$VERSION = "1.20";XSLoader::load 'IO', $VERSION;sub import { shift; my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir); eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l) or croak $@;}1;__END__=head1 NAMEIO - load various IO modules=head1 SYNOPSIS use IO;=head1 DESCRIPTIONC<IO> provides a simple mechanism to load some of the IO modules at one go.Currently this includes: IO::Handle IO::Seekable IO::File IO::Pipe IO::Socket IO::DirFor more information on any of these modules, please see its respectivedocumentation.=cut
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -