| Fey documentation | Contained in the Fey distribution. |
Fey::Types - Types for use in Fey
version 0.40
This module defines a whole bunch of types used by the Fey core classes. None of these types are documented for external use at the present, though that could change in the future.
See Fey for details on how to report bugs.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
| Fey documentation | Contained in the Fey distribution. |
package Fey::Types; BEGIN { $Fey::Types::VERSION = '0.40'; } use strict; use warnings; use base 'MooseX::Types::Combine'; __PACKAGE__->provide_types_from( qw( MooseX::Types::Moose Fey::Types::Internal ) ); 1; # ABSTRACT: Types for use in Fey
__END__