| Scalar-Alias documentation | Contained in the Scalar-Alias distribution. |
Scalar::Alias - Perl extention to declare lexical scalar aliases
This document describes Scalar::Alias version 0.06.
use Scalar::Alias;
sub inc{
my alias $x = shift;
$x++;
return;
}
my $i = 0;
inc($i);
print $i, "\n"; # => 1
my %h;
my alias $foo = $h{foo};
# %h is empty
$foo = 10;
# %h is {foo => 10}
Scalar::Alias allows you to declare lexical scalar aliases.
There are many modules that provides variable aliases, but this module is faster than any other alias modules, because it walks into compiled syntax trees and inserts custom opcodes into the syntax tree in order to alias variables.
Perl 5.8.1 or later, and a C compiler.
No bugs have been reported.
Please report any bugs or feature requests to the author.
"lexical aliases" in perltodo.
Other alias modules:
Goro Fuji (gfx) <gfuji(at)cpan.org>.
Copyright (c) 2009, Goro Fuji (gfx). Some rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Scalar-Alias documentation | Contained in the Scalar-Alias distribution. |
package Scalar::Alias; use 5.008_001; use strict; #use warnings; our $VERSION = '0.06'; use XSLoader; XSLoader::load(__PACKAGE__, $VERSION); 1; __END__