libclone-pp-perl 1.08-ok1 source package in openKylin

Changelog

libclone-pp-perl (1.08-ok1) yangtze; urgency=medium

  * Build for openkylin.

 -- denghao <email address hidden>  Tue, 13 Sep 2022 09:29:15 +0300

Upload details

Uploaded by:
denghao
Sponsored by:
Cibot
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
Nile V2.0 proposed main perl
Nile V2.0 release main perl
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libclone-pp-perl_1.08.orig.tar.gz 9.3 KiB 57203094a5d8574b6a00951e8f2399b666f4e74f9511d9c9fb5b453d5d11f578
libclone-pp-perl_1.08-ok1.debian.tar.xz 2.5 KiB c26a5c5c816c8701315a3630c32b8e92eedd4df65108884952c28a06b43bff58
libclone-pp-perl_1.08-ok1.dsc 1.8 KiB b1f3b8855ffc96cb16e66f676b4564a0ab503944794c690fa57701f42fc99433

Available diffs

View changes file

Binary packages built by this source

libclone-pp-perl: module to recursively copy Perl datatypes

 Clone::PP provides a general-purpose clone function to make deep
 copies of Perl data structures. It calls itself recursively to copy
 nested hash, array, scalar and reference types, including tied
 variables and objects.
 .
 The clone() function takes a scalar argument to copy. To duplicate
 arrays or hashes, pass them in by reference:
 .
  my $copy = clone(\@array); my @copy = @{ clone(\@array) };
  my $copy = clone(\%hash); my %copy = %{ clone(\%hash) };
 .
 The clone() function also accepts an optional second parameter that
 can be used to limit the depth of the copy. If you pass a limit of
 0, clone will return the same value you supplied; for a limit of
 1, a shallow copy is constructed; for a limit of 2, two layers of
 copying are done, and so on.
 .
 This is a pure-perl implementation. For a faster XS-/C-based
 implementation see the libclone-perl package.