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 developed the module originally, Andrew Main (Zefram) 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) . LICENSE This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.