MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string |
MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string
package My::Class; use Moose; use MooseX::Types::PerlIOLayerStr; has file => ( isa => 'Str' ); has layer => ( isa => 'PerlIOLayerStr' );
package main; my $fin = My::Class->new( file => 'Changelog', layer => ':utf8' );
This module provides Moose type which represents PerlIO layer string.
the Moose::Util::TypeConstraints manpage, the IO::Moose manpage, perlio.
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.
See http://www.perl.com/perl/misc/Artistic.html
MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string |