The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PerlIO::via::as_is - PerlIO layer that passes everything as-is

VERSION

This document describes version 0.001 of PerlIO::via::as_is (from Perl distribution PerlIO-via-as_is), released on 2016-10-12.

SYNOPSIS

Reading:

 use PerlIO::via::as_is;
 open my($fh), "<:via(as_is)", "file";
 print while <$fh>;

Writing:

 open my($fh), ">:via(as_is)", "file";
 print $fh "one", "two\n";

DESCRIPTION

This PerlIO layer does nothing (reads/writes everything as-is). Created for testing purpose.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/PerlIO-via-as_is.

SOURCE

Source repository is at https://github.com/perlancar/perl-PerlIO-via-as_is.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=PerlIO-via-as_is

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

PerlIO::via

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.