Subject: | Please add equals method |
Would be nice if this was supported and printed "Yes":
#!/usr/bin/env perl
use Net::IP;
my $ip = Net::IP->new('180.020.200.200'); # NB 020
if($ip->equals('180.20.200.200')) { # NB 20
print "Yes\n";
} else {
print "No\n";
}