1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Source: libdata-peek-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jeremiah C. Foster <jeremiah@jeremiahfoster.com>,
Jonathan Yu <jawnsy@cpan.org>,
gregor herrmann <gregoa@debian.org>
Section: perl
Priority: optional
# Recommends Data::Dumper: '2.160' (perl 5.23.7) and Test::More: '1.302015' (experimental)
Build-Depends: debhelper (>= 9.20120312),
libtest-nowarnings-perl,
libtest-pod-coverage-perl,
libtest-pod-perl,
perl (>= 5.21.6) | libtest-simple-perl (>= 1.001014),
perl,
perltidy
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdata-peek-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libdata-peek-perl.git
Homepage: https://metacpan.org/release/Data-Peek
Testsuite: autopkgtest-pkg-perl
Package: libdata-peek-perl
Architecture: any
Depends: ${perl:Depends},
${shlibs:Depends},
${misc:Depends}
Suggests: perltidy
Description: module providing low-level manipulation of Perl data
Data::Peek is a module that allows for low-level manipulation of Perl data
structures, particularly for displaying the internal representation of given
Perl variables.
.
In particular, it allows one to look at a scalar value to determine whether it
contains a string (PV), integer (IV or UV) or floating point number (NV); the
reference count of that scalar (REFCOUNT) and other flags (such as whether the
string is UTF-8).
.
This module can also create triple variables, which are similar to the dual
variables provided by Scalar::Util - they have two or three values, and the
value which is returned depends on the context in which it is used.
|