File: control

package info (click to toggle)
libstring-tagged-perl 0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 260 kB
  • sloc: perl: 1,772; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,525 bytes parent folder | download
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
Source: libstring-tagged-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Andrej Shadura <andrewsh@debian.org>
Build-Depends: debhelper (>= 10),
 libmodule-build-perl,
 perl
Build-Depends-Indep: libtest-identity-perl
Standards-Version: 4.1.3
Homepage: https://metacpan.org/release/String-Tagged
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libstring-tagged-perl
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libstring-tagged-perl

Package: libstring-tagged-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: 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.