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

Changelog

libclass-data-inheritable-perl (0.09-ok1) yangtze; urgency=low

  * Build for openkylin.

 -- denghao <email address hidden>  Wed, 24 Aug 2022 09:27:14 +0300

Upload details

Uploaded by:
denghao
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Low Urgency

Publishing See full publishing history

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libclass-data-inheritable-perl_0.09.orig.tar.gz 5.9 KiB 44088d6e90712e187b8a5b050ca5b1c70efe2baa32ae123e9bd8f59f29f06e4d
libclass-data-inheritable-perl_0.09-ok1.debian.tar.xz 1.8 KiB 27e1c0da7d7d5e2c2e94d13df4eaa62796a35c66d5f684bc1d4d04ab01dd6372
libclass-data-inheritable-perl_0.09-ok1.dsc 2.0 KiB 7efef387bb6cce9f10a63a7f03e84e9887293aa6e7b11c2a701f202332c348bf

Available diffs

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;