CHI::Memoize::Info - Information about a memoized function
Contents
Copyright And License
This software is copyright (c) 2011 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.28.0 2018-10-03 CHI::Memoize::Info(3pm)
Methods
cache
The CHI cache where memoize results are stored for this function
orig
The original code reference when "memoize" was called
wrapped
The wrapped code reference that "memoize" created
Name
CHI::Memoize::Info - Information about a memoized function
Synopsis
use CHI::Memoize qw(:all);
memoize('func');
# then
my $info = memoized('func');
# The CHI cache where memoize results are stored
#
my $cache = $info->cache;
$cache->clear;
# The original function, and the new wrapped function
#
my $orig = $info->orig;
my $wrapped = $info->wrapped;
Version
version 0.07
