MooseX::Types::OpenHandle - Type for opened file handle


File-Stat-Moose documentation  | view source Contained in the File-Stat-Moose distribution.

Index


NAME

Top

MooseX::Types::OpenHandle - Type for opened file handle

SYNOPSIS

Top

  package My::Class;
  use Moose;
  use MooseX::Types::OpenHandle;
  has statfh => ( isa => 'OpenHandle' );

  package main;
  stat "/etc/passwd";
  my $obj = My::Class->new( statfh => \*_ );

DESCRIPTION

Top

This module provides Moose type which represents opened file handle (glob reference or object).

SEE ALSO

Top

Moose::Util::TypeConstraints, File::Stat::Moose.

AUTHOR

Top

Piotr Roszatycki <dexter@cpan.org>

LICENSE

Top

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.

See http://www.perl.com/perl/misc/Artistic.html


File-Stat-Moose documentation  | view source Contained in the File-Stat-Moose distribution.