libstring-tagged-perl 0.24-1 source package in Ubuntu

Changelog

libstring-tagged-perl (0.24-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.24.

 -- gregor herrmann <email address hidden>  Wed, 24 Jul 2024 16:56:05 +0200

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 Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libstring-tagged-perl_0.24-1.dsc 2.4 KiB 2010aeca80ed6f04858384e8b168e7a52135c18b35e9fbe55fc3f2e112885fe9
libstring-tagged-perl_0.24.orig.tar.gz 46.4 KiB a3d9ba61af5a419fa4ca40cd084a62642b4ef6533cc42a209f8f7f63e21d74a9
libstring-tagged-perl_0.24-1.debian.tar.xz 3.0 KiB 5b98fa66799b178f27a0855faa2aeee5990f8c0a116f079cb87232d41d7ef24f

Available diffs

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 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.