DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamelibclone-pp-perl
BeschreibungRecursively copy Perl datatypes
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version1.02-1
Sektionperl
Prioritätoptional
Installierte Größe64 Byte
Hängt ab vonperl (>= 5.6.0-16)
Empfohlene Pakete
PaketbetreuerDebian Perl Group
Quelle
Paketgröße8728 Byte
Prüfsumme MD580e76146716f295ce8d8c13d386ef345
Prüfsumme SHA1d2058660e7d3c5226725c13a6e104fd04910afd4
Prüfsumme SHA25647a7fae82319a6d3d072c093163df6d4f09d22ce8409d3731ff5b81b6b423204
Link zum Herunterladenlibclone-pp-perl_1.02-1_all.deb
Ausführliche BeschreibungClone::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.


Impressum
Linux is a registered trademark of Linus Torvalds