• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D03-Nov-2001180 85

MANIFESTH A D03-Nov-200161 76

Makefile.PLH A D03-Nov-2001514 129

READMEH A D03-Nov-2001759 3018

Restore.pmH A D22-May-20021.2 KiB618

test.plH A D03-Nov-2001477 2815

README

1Tie/Restore version 0.1
2========================
3
4Provides the opposite of the 'tied' function.  Say you have %hash that
5is tied to $object.  Then, it is relatively simple to get $object from
6%hash simply by saying
7
8 $object = tied %hash;
9
10But, how does one go the other way?  Simple, with Tie::Restore
11
12 tie %hash, 'Tie::Restore', $object;
13
14Works for any kind of tie. (scalar, array, hash, filehandle)
15
16INSTALLATION
17
18To install this module type the following:
19
20   perl Makefile.PL
21   make
22   make test
23   make install
24
25COPYRIGHT AND LICENCE
26
27Written by Robby Walker ( webmaster@pointwriter.com ) for Point Writer ( http://www.pointwriter.com/ ).
28
29You may redistribute/modify/etc. this module under the same terms as Perl itself.
30