ad4f267b7a
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
13 lines
400 B
Text
13 lines
400 B
Text
Provides the opposite of the 'tied' function. Say you have %hash that
|
|
is tied to $object. Then, it is relatively simple to get $object from
|
|
%hash simply by saying
|
|
|
|
$object = tied %hash;
|
|
|
|
But, how does one go the other way? Simple, with Tie::Restore
|
|
|
|
tie %hash, 'Tie::Restore', $object;
|
|
|
|
Works for any kind of tie. (scalar, array, hash, filehandle)
|
|
|
|
WWW: https://metacpan.org/release/Tie-Restore
|