| Util-Properties documentation | view source | Contained in the Util-Properties distribution. |
Util::Properties::Combine - Util::Properties descendant, with summing & comparison methods
The idea is to have Util::Properties objects with summing (all the field are summed or substracted) and comparison (<=, >=) although Properties are not orderable. Comparing, summing will be done on all the properties fields
use Util::Properties::Combine;
my $pc1 = Util::Properties::Combine->new(file=>'file1.properties');
my $pc2 = Util::Properties::Combine->new(file=>'file2.properties');
my $p = Util::Properties::Combine->new(file=>'file.properties');
$pc1+=$p
if($pc1 <= $pc2){ ... }
Please report any bugs or feature requests to
bug-util-properties@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Util-Properties.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Copyright 2006 Alexandre Masselot, all rights reserved.
This program is released under the following license: gpl
| Util-Properties documentation | view source | Contained in the Util-Properties distribution. |