source: for-distributions/trunk/bin/windows/perl/lib/PerlIO/scalar.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 979 bytes
Line 
1package PerlIO::scalar;
2our $VERSION = '0.04';
3use XSLoader ();
4XSLoader::load 'PerlIO::scalar';
51;
6__END__
7
8=head1 NAME
9
10PerlIO::scalar - in-memory IO, scalar IO
11
12=head1 SYNOPSIS
13
14 my $scalar = '';
15 ...
16 open my $fh, "<", \$scalar or die;
17 open my $fh, ">", \$scalar or die;
18 open my $fh, ">>", \$scalar or die;
19
20or
21
22 my $scalar = '';
23 ...
24 open my $fh, "<:scalar", \$scalar or die;
25 open my $fh, ">:scalar", \$scalar or die;
26 open my $fh, ">>:scalar", \$scalar or die;
27
28=head1 DESCRIPTION
29
30A filehandle is opened but the file operations are performed "in-memory"
31on a scalar variable. All the normal file operations can be performed
32on the handle. The scalar is considered a stream of bytes. Currently
33fileno($fh) returns C<undef>.
34
35=head1 IMPLEMENTATION NOTE
36
37C<PerlIO::scalar> only exists to use XSLoader to load C code that
38provides support for treating a scalar as an "in memory" file.
39One does not need to explicitly C<use PerlIO::scalar>.
40
41=cut
Note: See TracBrowser for help on using the repository browser.