in reply to Re: Re: Comparing references to sub's
in thread Comparing references to sub's
If you were just dealing with a distinction between plain files and gzipped files, then you would want to use the Compress::Zlib module, or better yet, the PerlIO::gzip "layer" in Perl 5.8 -- this could simplify things a lot, to the point where you might not need separate subs for opening files and doing line-oriented IO (check this little node for a quickie sample of PerlIO::gzip in 5.8)
UPDATE: (2010-10-18) It seems that PerlIO::gzip should be viewed as superseded by PerlIO::via:gzip. (see PerlIO::gzip or PerlIO::via::gzip).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Comparing references to sub's
by rob_au (Abbot) on Mar 20, 2003 at 10:57 UTC | |
|
Re: Comparing references to sub's
by jonadab (Parson) on Mar 20, 2003 at 06:30 UTC |