|
NAMEAstro::App::Satpass2::Wrap::Array - Wrap an array reference.SYNOPSISuse Astro::App::Satpass2::Wrap::Array; my @array = qw{ foo bar baz }; my $wrap = Astro::App::Satpass2::Wrap::Array->new( \@array ); foreach ( $wrap->dereference() ) { say; } DESCRIPTIONThis class is private to the "Astro-App-Satpass2" package. It can be changed or revoked without notice. All documentation is for the benefit of the author.This class exists to mark arguments to "Template-Toolkit" that, when passed back through to other code, need to be dereferenced before use. Well, honestly, it exists because I can't figure out how to get "Template-Toolkit" to do this on its own, and having all the relevant "Astro-App-Satpass2" methods simply expand all array references has too many undesirable side effects. So what I intend to do is bless arguments that are to be expanded into this class. METHODSThis class supports the following public methods:newmy $wrap = Astro::App::Satpass2::Wrap::Array->new( \@foo ); This method instantiates the object. The array reference is required, and that array reference is blessed into this class. dereferencemy @array = $wrap->dereference(); This method returns the elements in the original array. SUPPORTSupport is by the author. Please file bug reports at <https://rt.cpan.org/Public/Dist/Display.html?Name=Astro-App-Satpass2>, <https://github.com/trwyant/perl-Astro-App-Satpass2/issues>, or in electronic mail to the author.AUTHORThomas R. Wyant, III wyant at cpan dot orgCOPYRIGHT AND LICENSECopyright (C) 2011-2021 by Thomas R. Wyant, IIIThis program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0. For more details, see the full text of the licenses in the directory LICENSES. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.
Visit the GSP FreeBSD Man Page Interface. |