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

📄 ops.pm

📁 UNIX下perl实现代码
💻 PM
字号:
package ops;use Opcode qw(opmask_add opset invert_opset);sub import {    shift;    # Not that unimport is the prefered form since import's don't	# accumulate well owing to the 'only ever add opmask' rule.	# E.g., perl -Mops=:set1 -Mops=:setb is unlikely to do as expected.    opmask_add(invert_opset opset(@_)) if @_;}sub unimport {    shift;    opmask_add(opset(@_)) if @_;}1;__END__=head1 NAMEops - Perl pragma to restrict unsafe operations when compiling=head1 SYNOPSIS    perl -Mops=:default ...    # only allow reasonably safe operations  perl -M-ops=system ...     # disable the 'system' opcode=head1 DESCRIPTIONSince the ops pragma currently has an irreversible global effect, it isonly of significant practical use with the C<-M> option on the command line.See the L<Opcode> module for information about opcodes, optags, opmasksand important information about safety.=head1 SEE ALSOOpcode(3), Safe(3), perlrun(3)=cut

⌨️ 快捷键说明

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