libreadonly-xs-perl 1.04-2build4 source package in Ubuntu

Changelog

libreadonly-xs-perl (1.04-2build4) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 10:36:00 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libreadonly-xs-perl_1.04.orig.tar.gz 8.9 KiB 3dce369ffcdaccd37e7ae65ce5a1dcda33dc99d91f8b8629265cf300898c41a4
libreadonly-xs-perl_1.04-2build4.diff.gz 3.2 KiB 048eef6f03edaccda06abad3bff5e707992e1f26040ad852afcf8aeb91bacf53
libreadonly-xs-perl_1.04-2build4.dsc 2.1 KiB 97a3b2285107b303681f44755f491d24c82d579b11e0495053412a87f74826c7

Available diffs

View changes file

Binary packages built by this source

libreadonly-xs-perl: 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.