NAME

    Catmandu::Fix::Date - Catmandu fixes for processing dates

SYNOPSIS

      use Catmandu::Fix::Date;
    
      # all fix functions are exported by default
      my $item = { date => '2001-11-09' };
      split_date($item, 'date');
      # $item == { date => { year => 2001, month => 11, day => 9 } }

DESCRIPTION

    Catmandu::Fix::Date includes the following Catmandu::Fix functions for
    processing dates:

      * Catmandu::Fix::datetime_format

      * Catmandu::Fix::timestamp

      * Catmandu::Fix::start_day

      * Catmandu::Fix::end_day

      * Catmandu::Fix::start_week

      * Catmandu::Fix::end_week

      * Catmandu::Fix::start_year

      * Catmandu::Fix::end_year

      * Catmandu::Fix::split_date

AUTHOR

    Nicolas Franck, <nicolas.franck at ugent.be>

LICENSE AND COPYRIGHT

    This program is free software; you can redistribute it and/or modify it
    under the terms of either: the GNU General Public License as published
    by the Free Software Foundation; or the Artistic License.

    See http://dev.perl.org/licenses/ for more information.