libstring-tagged-perl 0.16-1 source package in Ubuntu
Changelog
libstring-tagged-perl (0.16-1) unstable; urgency=medium * Team upload * New upstream version 0.16 * Update d/copyright years * Bump debhelper-compat to 12 * Bump Standards-Version to 4.4.0 * Update d/upstream/metadata * Add patch to fix spelling -- Utkarsh Gupta <email address hidden> Fri, 26 Jul 2019 09:28:10 +0530
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Focal | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libstring-tagged-perl_0.16-1.dsc | 2.4 KiB | 01792c5c4c56e26f51f272f1c817e905ff491e82d0db3274b8d8925828f43fa5 |
libstring-tagged-perl_0.16.orig.tar.gz | 39.8 KiB | f07c2842aa759a8275b74d7ff625ff49a38fb7942da28d6ab71b70969f7373de |
libstring-tagged-perl_0.16-1.debian.tar.xz | 2.3 KiB | 3b99eccfa1d39b1b0e757ba22a96804a101d755cc0a7018c9dbaa74123d545b0 |
Available diffs
- diff from 0.15-1 to 0.16-1 (4.3 KiB)
No changes file available.
Binary packages built by this source
- libstring-tagged-perl: string buffers with value tags on extents
String::Tagged implements an object class, instances of which store a
(mutable) string buffer that supports tags. A tag is a name/value pair that
applies to some non-empty extent of the underlying string.
.
The types of tag names ought to be strings, or at least values that are
well-behaved as strings, as the names will often be used as the keys in
hashes or applied to the eq operator.
.
The types of tag values are not restricted - any scalar will do. This could
be a simple integer or string, ARRAY or HASH reference, or even a CODE
reference containing an event handler of some kind.
.
Tags may be arbitrarily overlapped. Any given offset within the string has in
effect, a set of uniquely named tags. Tags of different names are
independent. For tags of the same name, only the latest, shortest tag takes
effect.