libclass-prototyped-perl 1.13-4 source package in Ubuntu

Changelog

libclass-prototyped-perl (1.13-4) unstable; urgency=medium

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

 -- Jelmer Vernooij <email address hidden>  Sun, 16 Oct 2022 01:47:22 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-prototyped-perl_1.13-4.dsc 2.1 KiB 4afd6cfbbd3688f826238a7ec0b37dbe70d2b3bb048f1113d0411e17ec45a43f
libclass-prototyped-perl_1.13.orig.tar.gz 71.5 KiB 031f9e4b5c2ab0de014c34224ab2c90f6cdd5875dce3b0c25334429b05fecc6c
libclass-prototyped-perl_1.13-4.debian.tar.xz 4.5 KiB 32d76dfd655af6cd1f8618dbf70797193d879a338be9fddae6c33c6256f7b9e5

Available diffs

No changes file available.

Binary packages built by this source

libclass-prototyped-perl: module for fast prototype-based OO programming in Perl

 Class:Prototyped provides for efficient and simple prototype-based
 programming in Perl. You can provide different subroutines for each
 object, and also have objects inherit their behavior and state from
 another object.
 .
 Class::Prototyped borrows heavily from the programming language Self.
 The structure of an object is inspected and modified through mirrors,
 which are created by calling "reflect" on an object or class that
 inherits from Class::Prototyped.
 .
 Prototype-based programming is most useful when the cleanest way for code
 to use a module is to subclass it, or when one finds oneself avoiding
 this by passing anonymous subroutines as parameters to "new".
 Prototype-based programming is also useful in situations that otherwise
 require storing anonymous subroutines in databases, configuration files,
 or text files, or when users of a module are expected to override
 subroutines to change its behabior.