|
NAMEMooseX::Types::DateTime - DateTime related constraints and coercions for MooseVERSIONversion 0.13SYNOPSISExport Example:use MooseX::Types::DateTime qw(TimeZone); has time_zone => ( isa => TimeZone, is => "rw", coerce => 1, ); Class->new( time_zone => "Africa/Timbuktu" ); DESCRIPTIONThis module packages several Moose::Util::TypeConstraints with coercions, designed to work with the DateTime suite of objects.Namespaced Example: use MooseX::Types::DateTime; has time_zone => ( isa => 'DateTime::TimeZone', is => "rw", coerce => 1, ); Class->new( time_zone => "Africa/Timbuktu" ); CONSTRAINTS
SEE ALSOMooseX::Types::DateTime::MoreCoercionsDateTime, DateTimeX::Easy SUPPORTBugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Types-DateTime> (or bug-MooseX-Types-DateTime@rt.cpan.org <mailto:bug-MooseX-Types-DateTime@rt.cpan.org>).There is also a mailing list available for users of this distribution, at <http://lists.perl.org/list/moose.html>. There is also an irc channel available for users of this distribution, at irc://irc.perl.org/#moose. AUTHORXXXX XXX'XX (Yuval Kogman) <nothingmuch@woobling.org>CONTRIBUTORS
COPYRIGHT AND LICENCEThis software is copyright (c) 2008 by XXXX XXX'XX (Yuval Kogman).This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |