Fey::ORM::Types - Types for use in Fey::ORM


Fey-ORM documentation Contained in the Fey-ORM distribution.

Index


Code Index:

NAME

Top

Fey::ORM::Types - Types for use in Fey::ORM

VERSION

Top

version 0.43

DESCRIPTION

Top

This module defines a whole bunch of types used by the Fey::ORM core classes. None of these types are documented for external use at the present, though that could change in the future.

BUGS

Top

See Fey::ORM for details on how to report bugs.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey-ORM documentation Contained in the Fey-ORM distribution.

package Fey::ORM::Types;
BEGIN {
  $Fey::ORM::Types::VERSION = '0.43';
}

use strict;
use warnings;

use base 'MooseX::Types::Combine';

__PACKAGE__->provide_types_from(
    qw( MooseX::Types::Moose Fey::ORM::Types::Internal )
);

1;

# ABSTRACT: Types for use in Fey::ORM




__END__