| Variable-Eject documentation | view source | Contained in the Variable-Eject distribution. |
Variable::Eject - Eject variables from hash to current namespace
Version 0.02
use Variable::Eject;
my $hash = {
scalar => 'scalar value',
array => [1..3],
hash => { my => 'value' },
};
# Now, eject vars from hash
eject(
$hash => $scalar, @array, %hash,
);
# Let's look
say $scalar;
say @array;
say keys %hash;
# Let's modify (source will be modified)
$scalar .= ' modified';
shift @array;
$hash{another} = 1;
A list of functions that can be exported. You can delete this section if you don't export anything, such as for a purely object-oriented module.
Mons Anderson, <mons at cpan.org>
Please report any bugs or feature requests to bug-variable-eject at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Eject. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
Copyright 2009 Mons Anderson, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Variable-Eject documentation | view source | Contained in the Variable-Eject distribution. |