NAME
MooseX::Types::CacheFileHandle - Type for special cached file handle
SYNOPSIS
package My::Class;
use Moose;
use MooseX::Types::CacheFileHandle;
has fh => ( isa => 'CacheFileHandle' );
package main;
my $obj = My::Class->new( fh => \*_ );
DESCRIPTION
This module provides Moose type which represents opened file handle (glob reference or object).
SEE ALSO
Moose::Util::TypeConstraints, File::Stat::Moose.
AUTHOR
Piotr Roszatycki <dexter@debian.org>
LICENSE
Copyright (C) 2007, 2008 by Piotr Roszatycki <dexter@debian.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.