Searched refs:unmemoize (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
H A Dunmemoize.t4 use Memoize qw(memoize unmemoize);
8 eval { unmemoize('f') }; # Should fail
18 eval { unmemoize('u') }; # Should succeed
24 eval { unmemoize('u') }; # Should fail
H A Darray_confusion.t4 use Memoize 'memoize', 'unmemoize';
30 unmemoize 'reff';
32 unmemoize 'listf';
H A Dtie.t4 use Memoize 0.52 qw(memoize unmemoize);
64 unmemoize 'c5';
79 unmemoize 'c23';
H A Dtie_ndbm.t4 use Memoize 0.45 qw(memoize unmemoize);
60 unmemoize 'c5';
75 unmemoize 'c23';
H A Dtie_sdbm.t4 use Memoize 0.45 qw(memoize unmemoize);
59 unmemoize 'c5';
74 unmemoize 'c23';
H A Dtie_storable.t5 use Memoize 0.45 qw(memoize unmemoize);
64 unmemoize 'c5';
81 unmemoize 'c23';
H A Dtiefeatures.t4 use Memoize 0.45 qw(memoize unmemoize);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DMemoize.pm33 @EXPORT_OK = qw(unmemoize flush_cache);
277 sub unmemoize { subroutine
283 croak "Could not unmemoize function `$f', because it was not memoized to begin with";
288 croak "Could not figure out how to unmemoize function `$f'";
778 =head2 C<unmemoize>
780 There's an C<unmemoize> function that you can import if you want to.
788 $SIG{INT} = sub { unmemoize 'function' };
790 C<unmemoize> accepts a reference to, or the name of a previously
796 If you ask it to unmemoize a function that was never memoized, it
948 memoize the function, and stored back at the time you unmemoize th
[all...]

Completed in 117 milliseconds