The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Number::Compare::Duration - numeric comparisons of time durations

VERSION

Version 0.001

SYNOPSIS

    Number::Compare::Duration->new('>10d')->(86400 * 9);
    # false, 9 days is not more than 10

DESCRIPTION

See Number::Compare for a basic description.

Number::Compare::Duration uses different magnitudes than Number::Compare. They are: s for seconds, m for minutes, h for hours, d for days. No accounting for daylight savings is done; each day is 86400 seconds. The default magnitude is s (seconds).

AUTHOR

Hans Dieter Pearcey, <hdp at cpan.org>

BUGS

Please report any bugs or feature requests to bug-number-compare-duration at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Number-Compare-Duration. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Number::Compare::Duration

You can also look for information at:

SEE ALSO

Number::Compare

COPYRIGHT & LICENSE

Copyright 2008 Hans Dieter Pearcey, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.