libstruct-dumb-perl 0.13-2 source package in Ubuntu

Changelog

libstruct-dumb-perl (0.13-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libstruct-dumb-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 15:27:44 +0100

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libstruct-dumb-perl_0.13-2.dsc 2.2 KiB 9e0e80540e0c7d3df74e29eee59326c163d751d69513cd4f4806cc00b971cc2f
libstruct-dumb-perl_0.13.orig.tar.gz 15.1 KiB 2e40af8daac08f743e7d7c29a6d61484d3081a5928aeac23a70fa7e0b79dcde4
libstruct-dumb-perl_0.13-2.debian.tar.xz 2.6 KiB e8a20d11d41d297fef08e4b2ea181d357bbb3e81aca0550f267199ddfc817c5a

Available diffs

No changes file available.

Binary packages built by this source

libstruct-dumb-perl: module to create simple lightweight record-like structures

 Struct::Dumb creates record-like structure types, similar to the struct
 keyword in C, C++ or C#, or Record in Pascal. An invocation of this module
 will create a construction function which returns new object references with
 the given field values. These references all respond to lvalue methods that
 access or modify the values stored.
 .
 It's specifically and intentionally not meant to be an object class. You
 cannot subclass it. You cannot provide additional methods. You cannot apply
 roles or mixins or metaclasses or traits or antlers or whatever else is in
 fashion this week.
 .
 On the other hand, it is tiny, creates cheap lightweight array-backed
 structures, uses nothing outside of core. It's intended simply to be a
 slightly nicer way to store data structures, where otherwise you might be
 tempted to abuse a hash, complete with the risk of typoing key names. The
 constructor will croak if passed the wrong number of arguments, as will
 attempts to refer to fields that don't exist.