aboutsummaryrefslogblamecommitdiff
path: root/devel/p5-WeakRef/pkg-descr
blob: 93511f1f6563163cbded4fd2865b10f127efd2d7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                     
A patch to Perl 5.005_55 by the author implements a core API for
weak references. This module is a Perl-level interface to that API,
allowing weak references to be created in Perl.

A weak reference is just like an ordinary Perl reference except
that it isn't included in the reference count of the thing referred
to. This means that once all references to a particular piece of
data are weak, the piece of data is freed and all the weak references
are set to undef. This is particularly useful for implementing
circular data structures without memory leaks or caches of objects.

WWW: http://search.cpan.org/dist/WeakRef/