bytes.pm

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PM 代码 · 共 42 行

PM
42
字号
package ExtUtils::MakeMaker::bytes;use strict;use vars qw($VERSION);$VERSION = 6.42;my $Have_Bytes = eval q{require bytes; 1;};sub import {    return unless $Have_Bytes;    shift;    unshift @_, 'bytes';    goto &bytes::import;}1;=head1 NAMEExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm=head1 SYNOPSIS  use just like bytes.pm=head1 DESCRIPTIONbytes.pm was introduced with 5.6.  This means any code which has 'usebytes' in it won't even compile on 5.5.X.  Since bytes is a lexicalpragma and must be used at compile time we can't simply wrap it ina BEGIN { eval 'use bytes' } block.ExtUtils::MakeMaker::bytes is just a very thin wrapper around byteswhich works just like it when bytes.pm exists and everywhere else itdoes nothing.=cut

⌨️ 快捷键说明

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