PerlIO::via

PerlIO::via

NAME

PerlIO::via - Helper class for PerlIO layers implemented in perl

SYNOPSIS

use PerlIO::via::Layer;
open($fh,"<:via(Layer)",...);

use Some::Other::Package;
open($fh,">:via(Some::Other::Package)",...);

DESCRIPTION

The PerlIO::via module allows you to develop PerlIO layers in Perl, without having to go into the nitty gritty of programming C with XS as the interface to Perl.

One example module, PerlIO::via::QuotedPrint, is inc