libreturn-multilevel-perl

Perl module to enable returning from a nested call stack
  https://metacpan.org/release/Return-MultiLevel
  0
  no reviews



Return::multilevel provides a way to return immediately from a deeply nested call stack. this is similar to exceptions, but exceptions don't stop automatically at a target frame (and they can be caught by intermediate stack frames). in other words, this is more like setjmp(3)/longjmp(3) than die.