|
NAMEVariable::Eject - Eject variables from hash to current namespace VERSIONVersion 0.04 SYNOPSIS 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;
EXPORTA 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. FUNCTIONSeject ( $source_hash => $scalar, @array, %hash ... );AUTHORMons Anderson, "<mons at cpan.org>" BUGSPlease 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 & LICENSECopyright 2009-2020 Mons Anderson This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|