libdevel-refcount-perl 0.10-1build1 source package in Ubuntu

Changelog

libdevel-refcount-perl (0.10-1build1) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 09:56:24 +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
Trusty release universe perl

Downloads

File Size SHA-256 Checksum
libdevel-refcount-perl_0.10.orig.tar.gz 14.1 KiB b654d46963d1a881426ba15994f28f52eb839b0d135bf239b4d1bf38b1caca4a
libdevel-refcount-perl_0.10-1build1.debian.tar.gz 2.3 KiB da5313ac15c803217c63b12e553cb36f3730a813edd9046758be878133ffd85b
libdevel-refcount-perl_0.10-1build1.dsc 2.2 KiB 28f21c712720e7cf95f6f9215d09a5c5c4759fbdaa5582b84a574afc9e3bbe3d

Available diffs

View changes file

Binary packages built by this source

libdevel-refcount-perl: Perl module to obtain the reference count of a variable

 Devel::Refcount provides a single function which obtains the reference count
 of the object being pointed to by the passed reference value.
 .
 Internally, Perl maintains a count of the number of 'things' referring to each
 variable, as a means of providing automatic memory management. Every time a
 reference is made to a scalar value, for example, the reference count is
 incremented; every time that reference is lost (eg. when a lexical variable
 goes out of scope) then the reference count is decremented.