1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
NAME
Data::Alias - Comprehensive set of aliasing operations
DESCRIPTION
Aliasing is the phenomenon where two different expressions actually
refer to the same thing. Modifying one will modify the other, and if
you take a reference to both, the two values are the same.
Data::Alias is a module that allows you to apply "aliasing semantics"
to a section of code, causing aliases to be made whereever Perl would
normally make copies instead. You can use this to improve efficiency
and readability, when compared to using references.
INSTALLATION
perl Makefile.PL
make
make test
make install
AUTHOR
Matthijs van Duin <xmath@cpan.org> developed the module originally,
Andrew Main (Zefram) <zefram@fysh.org> updated it to work with Perl
version 5.11 and maintained it from 2010 to 2017.
COPYRIGHT
Copyright (C) 2003-2007, 2021, 2022, 2026 Matthijs van Duin.
Copyright (C) 2010, 2011, 2013, 2015, 2017
Andrew Main (Zefram) <zefram@fysh.org>.
LICENSE
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|