|
|
|
good chemistry is complicated, and a little bit messy -LW |
|
| PerlMonks |
Non-local return via last()by moritz (Cardinal) |
| on Sep 27, 2012 at 11:54 UTC ( #995995=CUFP: print w/ replies, xml ) | Need Help?? |
|
For $work I'm writing a text-only menu system, and that defines callbacks which are called for specific input. Now the default behavior is to simply ignore the return value (trust me, it makes sense in my $work context), and exit the menu when the input is empty. However I want to give some callbacks the possibility to exit the menu too. How? A normal return() doesn't accomplish that, so here is my hack:
In my menu system, the inner loop is a bit different, but this captures the idea pretty well IMHO. The same could be achieved through exceptions. One thing it doesn't handle well is context: the callback is always called in the same context (here void context), so wantarray isn't useful in the callback.
Back to
Cool Uses for Perl
|
|
||||||||||||||||||||||