软件包:libreadonly-xs-perl(1.05-1 以及其他的)
libreadonly-xs-perl 的相关链接
Debian 的资源:
下载源码包 libreadonly-xs-perl:
- [libreadonly-xs-perl_1.05-1.dsc]
- [libreadonly-xs-perl_1.05.orig.tar.gz]
- [libreadonly-xs-perl_1.05-1.debian.tar.gz]
维护小组:
外部的资源:
- 主页 [metacpan.org]
相似软件包:
faster Readonly implementation
The Readonly module (q.v.) is an effective way to create non-modifiable variables. However, it's relatively slow.
The reason it's slow is that is implements the read-only-ness of variables via tied objects. This mechanism is inherently slow. Perl simply has to do a lot of work under the hood to make tied variables work.
This module corrects the speed problem, at least with respect to scalar variables. When Readonly::XS is installed, Readonly uses it to access the internals of scalar variables. Instead of creating a scalar variable object and tying it, Readonly simply flips the SvREADONLY bit in the scalar's FLAGS structure.
其他与 libreadonly-xs-perl 有关的软件包
|
|
|
|
-
- dep: libc6 (>= 2.2.5)
- GNU C 语言运行库:共享库
同时作为一个虚包由这些包填实: libc6-udeb
-
- dep: perl (>= 5.28.0-3)
- 拉里 沃尔的实用报表提取语言(Perl)
-
- dep: perlapi-5.28.0
- 本虚包由这些包填实: perl-base
-
- rec: libreadonly-perl
- facility for creating read-only scalars, arrays and hashes