libhash-merge-perl 0.302-1 source package in Ubuntu

Changelog

libhash-merge-perl (0.302-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.302.

 -- gregor herrmann <email address hidden>  Tue, 04 Aug 2020 02:58:25 +0200

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
Jammy release universe perl

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhash-merge-perl_0.302-1.dsc 2.3 KiB 595e409a08548925df83ae8fee86474f81e88372b80bed905ecae0585587ccf5
libhash-merge-perl_0.302.orig.tar.gz 13.8 KiB ae0522f76539608b61dde14670e79677e0f391036832f70a21f31adde2538644
libhash-merge-perl_0.302-1.debian.tar.xz 3.2 KiB 07b14221a3d00fcb41539f6c9b3ddef4f283c54301ce0cb3fb9a183d90d7871a

Available diffs

No changes file available.

Binary packages built by this source

libhash-merge-perl: Perl module for merging arbitrarily deep hashes into a single hash

 Hash::Merge merges two arbitrarily deep hashes into a single hash. That
 is, at any level, it will add non-conflicting key-value pairs from one
 hash to the other, and follows a set of specific rules when there are key
 value conflicts (as outlined below). The hash is followed recursively,
 so that deeply nested hashes that are at the same level will be merged
 when the parent hashes are merged. Please note that self-referencing
 hashes, or recursive references, are not handled well by this method.
 .
 Values in hashes are considered to be either ARRAY references,
 HASH references, or otherwise are treated as SCALARs. By default, the
 data passed to the merge function will be cloned using the Clone module;
 however, if necessary, this behavior can be changed to use as many of
 the original values as possible. (See set_clone_behavior).