Skip Menu |

This queue is for tickets about the Hash-Diff CPAN distribution.

Report information
The Basics
Id: 101708
Status: resolved
Worked: 10 min
Priority: 0/
Queue: Hash-Diff

People
Owner: bo [...] startsiden.no
Requestors: alexandros.kechagias [...] idealo.de
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.007



Subject: if two values in hash are undef, it is recognized as a difference.
Date: Fri, 23 Jan 2015 17:21:57 +0100
To: bug-Hash-Diff [...] rt.cpan.org
From: Alexandros Kechagias <alexandros.kechagias [...] idealo.de>
Hello, if two values in hash are undef, it is recognized as a difference. Example: use Hash::Diff qw(diff); my %a = ('bar' => undef); my %b = ('bar' => undef); my %c = %{ diff(\%a, \%b) }; # %c = %{ bar => undef }