fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
11 lines
353 B
Text
11 lines
353 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)
|