Is there a way for me to return from my caller instead of to my caller? e.g.
sub foo {
bar();
# this never gets executed
}
sub bar {
return_from_caller(5);
}
# This prints 5
print foo();
(Rationale: I am writing a function memoize_self that memoizes a function from within the function itself. I'd like it to work like this:
sub complex_function {
my ($x, $y) = @_;
memoize_self({key => $y, expires_in => '5min'));
# compute $result
return $result;
}
memoize_self will check its cache, and if it gets a hit, return the cached value from its caller. Otherwise, it will re-call the function (with a dynamically scoped var to avoid the obvious infinite loop), store the return value in the cache and again return it.
Without the ability to return from caller, I'd probably use $_ and write it this way:
return $_ if memoize_self({key => $y, expires_in => '5min'));
But this is extra noise, and also doesn't take context into account.)
EDIT: To the people who reasonably suggested Memoize - yes, I should have said, I know this module well. I'm writing a more modern and featureful version of Memoize based on CHI.
But as relates to this question, there are cases where it's useful to memoize from within the function rather than outside the function (Memoize only does the latter). It makes it easy to customize the cache key and/or determine whether you want to memoize at all for this particular call. e.g.
sub complex_function {
my $key = ...; # normalize arguments
if (...) { # is it worth memoizing in this case?
memoize_self({key => $key});
}
}
I also like the way it is wrapped up in the function instead of creating its own line outside, ala state variables.