if.pm

来自「SinFP是一种新的识别对方计算机操作系统类型的工具」· PM 代码 · 共 50 行

PM
50
字号
package if;use vars qw($VERSION);$VERSION = '0.01';sub work {  my $method = shift() ? 'import' : 'unimport';  return unless shift;		# CONDITION  my $p = shift;		# PACKAGE  eval "require $p" or die;	# Adds .pm etc if needed  $p->$method(@_) if $p->can($method);}sub import   { shift; unshift @_, 1; goto &work }sub unimport { shift; unshift @_, 0; goto &work }1;__END__=head1 NAMEif - C<use> a Perl module if a condition holds=head1 SYNOPSIS  use if CONDITION, MODULE => ARGUMENTS;=head1 DESCRIPTIONThe construct  use if CONDITION, MODULE => ARGUMENTS;has no effect unless C<CONDITION> is true.  In this case the effect isthe same as of  use MODULE ARGUMENTS;=head1 BUGSThe current implementation does not allow specification of therequired version of the module.=head1 AUTHORIlya Zakharevich L<mailto:perl-module-if@ilyaz.org>.=cut

⌨️ 快捷键说明

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