IO-ReadPreProcess
view release on metacpan or search on metacpan
{
"abstract" : "Macro processing built into IO::File replacement",
"author" : [
"Alain Williams <addw@phcomp.co.uk>"
],
"dynamic_config" : 1,
"generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.120351",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'Macro processing built into IO::File replacement'
author:
- 'Alain Williams <addw@phcomp.co.uk>'
build_requires:
Test::More: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.120351'
license: perl
meta-spec:
lib/IO/ReadPreProcess.pm view on Meta::CPAN
# Enable the object to be used in the diamond operator:
use overload '<>' => \&getline, fallback => 1;
1;
__END__
=head1 NAME
IO::ReadPreProcess - Macro processing built into IO::File replacement
=head1 SYNOPSIS
use IO::ReadPreProcess;
my $fh = new IO::ReadPreProcess(File => './input.file') or
die "Startup error: $IO::ReadPreProcess::errstr\n";
while(<$fh>) {
print $_; # Or other processing of input
( run in 1.097 second using v1.01-cache-2.11-cpan-49f99fa48dc )