MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string


NAME

MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string

Back to Top


SYNOPSIS

  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' );

Back to Top


DESCRIPTION

This module provides Moose type which represents PerlIO layer string.

Back to Top


SEE ALSO

the Moose::Util::TypeConstraints manpage, the IO::Moose manpage, perlio.

Back to Top


AUTHOR

Piotr Roszatycki <dexter@cpan.org>

Back to Top


LICENSE

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

Back to Top

 MooseX::Types::PerlIOLayerStr - Type for PerlIO layer string