| File-Stat-Moose documentation | Contained in the File-Stat-Moose distribution. |
MooseX::Types::OpenHandle - Type for opened file handle
package My::Class; use Moose; use MooseX::Types::OpenHandle; has statfh => ( isa => 'OpenHandle' ); package main; stat "/etc/passwd"; my $obj = My::Class->new( statfh => \*_ );
This module provides Moose type which represents opened file handle (glob reference or object).
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 | Contained in the File-Stat-Moose distribution. |
#!/usr/bin/perl -c package MooseX::Types::OpenHandle;
use 5.008; use strict; use warnings; our $VERSION = '0.06'; use Moose::Util::TypeConstraints; subtype OpenHandle => ( as 'Ref', where { defined Scalar::Util::reftype($_) && Scalar::Util::reftype($_) eq 'GLOB' && Scalar::Util::openhandle($_) }, optimize_as { defined $_[0] && defined Scalar::Util::reftype($_[0]) && Scalar::Util::reftype($_[0]) eq 'GLOB' && Scalar::Util::openhandle($_[0]) }, ); 1; __END__