libclass-data-inheritable-perl 0.08-ok1 source package in openKylin

Changelog

libclass-data-inheritable-perl (0.08-ok1) yangtze; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 25 Apr 2022 22:03:04 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
luzp
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libclass-data-inheritable-perl_0.08.orig.tar.gz 5.5 KiB 9967feceea15227e442ec818723163eb6d73b8947e31f16ab806f6e2391af14a
libclass-data-inheritable-perl_0.08-ok1.debian.tar.xz 2.1 KiB e738943cfe02f251b6b27564f92c7ad44b66bd1d3a358bf0b24747a6bc7f938c
libclass-data-inheritable-perl_0.08-ok1.dsc 2.1 KiB d0d24ae93543bc0d5d7c49d5158c27e6e45306d6e7dd35f69f14220a2a8a8d58

View changes file

Binary packages built by this source

libclass-data-inheritable-perl: Perl module to create accessors to class data

 Class::Data::Inheritable is for creating accessors/mutators to class
 data. That is, if you want to store something about your class as a
 whole (instead of about a single object). This data is then inherited
 by your subclasses and can be overridden.
 .
 For example:
 .
 Pere::Ubu->mk_classdata('Suitcase');
 .
 will generate the method Suitcase() in the class Pere::Ubu.
 .
 This new method can be used to get and set a piece of class data.
 .
 Pere::Ubu->Suitcase('Red');
 $suitcase = Pere::Ubu->Suitcase;