Skip Menu |

This queue is for tickets about the Set-Array CPAN distribution.

Report information
The Basics
Id: 29871
Status: resolved
Priority: 0/
Queue: Set-Array

People
Owner: Nobody in particular
Requestors: adrianissott [...] hotmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.14
Fixed in: (no value)



Subject: intersection(['A', 'A'], ['A', 'A']) doesn't equal ['A', 'A']
The following code snippet print 'A' and not the expected ['A', 'A'] use Set::Array; my $sao1 = Set::Array->new('A', 'A'); my $sao2 = Set::Array->new('A', 'A'); use Data::Dump qw(dump); print dump($sao1->intersection($sao2)), "\n";
Patch in V 0.15, which has been uploaded to CPAN.