You may have some difficulty with isa => 'FileHandle' because while FileHandle is a core Perl module, Moose uses the type constraint string "FileHandle" to refer to unblessed Perl file handles - i.e. not objects created by the FileHandle package.
open my $fh , "<", "temp.txt"; $self->fh($fh); while (<$fh>) { print $_; }
In reply to Re^2: Moose and File::Temp
by tobyink
in thread Moose and File::Temp
by gsiglet
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |