⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tm.pm

📁 UNIX下perl实现代码
💻 PM
字号:
package Time::tm;use strict;use Class::Struct qw(struct);struct('Time::tm' => [     map { $_ => '$' } qw{ sec min hour mday mon year wday yday isdst }]);1;__END__=head1 NAMETime::tm - internal object used by Time::gmtime and Time::localtime=head1 SYNOPSISDon't use this module directly.=head1 DESCRIPTIONThis module is used internally as a base class by Time::localtime AndTime::gmtime functions.  It creates a Time::tm struct object which isaddressable just like's C's tm structure from F<time.h>; namely with sec,min, hour, mday, mon, year, wday, yday, and isdst.This class is an internal interface only. =head1 AUTHORTom Christiansen

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -