| File-Stat-Moose documentation | view source | Contained in the File-Stat-Moose distribution. |
MooseX::Types::CacheFileHandle - Type for special cached file handle
package My::Class; use Moose; use MooseX::Types::CacheFileHandle; has fh => ( isa => 'CacheFileHandle' ); package main; my $obj = My::Class->new( fh => \*_ );
This module provides Moose type which represents special cached file handle
- underscore (_) - which is used for stat tests.
Piotr Roszatycki <dexter@cpan.org>
Copyright (C) 2007, 2008, 2009 by Piotr Roszatycki <dexter@cpan.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| File-Stat-Moose documentation | view source | Contained in the File-Stat-Moose distribution. |