MooseX::Types::DateTime
DateTime related constraints and coercions for Moose
DateTime related constraints and coercions for Moose
Export Example:
use MooseX::Types::DateTime qw(TimeZone);
has time_zone => (
isa => TimeZone,
is => "rw",
coerce => 1,
);
Class->new( time_zone => "Africa/Timbuktu" );
Namespaced Example:
use MooseX::Types::DateTime;
has time_zone => (
isa => 'DateTime::TimeZone',
is => "rw",
coerce => 1,
);
Class->new( time_zone => "Africa/Timbuktu" );
This module packages several Moose::Util::TypeConstraints with coercions, designed to work with the DateTime suite of objects.
Note that due to leap seconds, DST changes etc this may not do what you expect. For instance passing in 86400 is not always equivalent to one day, although there are that many seconds in a day. See "How Date Math is Done" in DateTime for more details.
Delegates to "new" in DateTime::TimeZone with the string as the "name" argument.
MooseX::Types::DateTime::MoreCoercions
DateTime, DateTimeX::Easy
This module is maintained using git. You can get the latest version from <git://git.moose.perl.org/MooseX-Types-DateTime.git>.
Yuval Kogman <nothingmuch@woobling.org>
John Napiorkowski <jjn1056 at yahoo.com>
Copyright (c) 2008 Yuval Kogman. All rights reserved
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.