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)
9 lines
587 B
Text
9 lines
587 B
Text
Data::Clone does data cloning, i.e. copies things recursively. This is smart so
|
|
that it works with not only non-blessed references, but also with blessed
|
|
references (i.e. objects). When clone() finds an object, it calls a clone method
|
|
of the object if the object has a clone, otherwise it makes a surface copy of
|
|
the object. That is, this module does polymorphic data cloning.
|
|
|
|
Although there are several modules on CPAN which can clone data, this module has
|
|
a different cloning policy from almost all of them. See "Cloning policy" and
|
|
"Comparison to other cloning modules" for details.
|