パッケージ: 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.1.3) [i386]
- GNU C ライブラリ: 共有ライブラリ
以下のパッケージによって提供される仮想パッケージでもあります: libc6-udeb
- dep: libc6 (>= 2.17) [arm64]
- dep: libc6 (>= 2.2.5) [amd64]
- dep: libc6 (>= 2.4) [armhf]
-
- dep: perl (>= 5.28.0-3)
- Larry Wall 作の実用的な抽出とレポート用の言語
-
- dep: perlapi-5.28.0
- 以下のパッケージによって提供される仮想パッケージです: perl-base
-
- rec: libreadonly-perl
- facility for creating read-only scalars, arrays and hashes