
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.

Moose::Util::TypeConstraints, IO::Moose, 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.