1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/devel/p5-Tie-Restore/pkg-descr
Doug Barton 2396f28e1c Standardize placement and style of WWW: lines, and in some cases
remove ^M from line endings.

List of files with "issues" supplied by: Alex Kozlov <spam@rm-rf.kiev.ua>
2008-06-19 07:33:53 +00:00

14 lines
400 B
Plaintext

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: http://search.cpan.org/dist/Tie-Restore/