NAME
Kit::Types - Import common Moose type constraints
SYNOPSIS
use Moose;
use Kit::Types qw(ArrayRef Datetime Dir File HashRef Str);
has aString => (is => 'rw', isa => Str);
has aFile => (is => 'ro', isa => File, coerce => 1);
ABSTRACT
A one-stop Moose Type shop.
DESCRIPTION
Makes available for import all types from the following libraries:
COPYRIGHT
Copyright (C)2009 Vincent Veselosky All rights Reserved