• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Data/H11-May-2021-43313

t/H11-May-2021-4,4862,110

.gitignoreH A D19-Nov-201395 109

Alias.xsH A D11-May-202156.2 KiB2,3562,126

ChangesH A D11-May-20218.2 KiB206168

MANIFESTH A D11-May-2021858 4645

META.jsonH A D11-May-20211.3 KiB6059

META.ymlH A D11-May-2021699 3231

Makefile.PLH A D11-May-20211.6 KiB7861

READMEH A D08-Dec-20171 KiB3926

README

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