in reply to For clarity and cleanliness, I'd recommend...
in thread looking for a good idiom: return this if this is true

Aha! I knew it merely took the electron spin reversal of the other side of the world to solve this correctly! Thanks. That's the version that goes into the example now.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on Re: For clarity and cleanliness, I'd recommend...

Replies are listed 'Best First'.
Re^2: For clarity and cleanliness, I'd recommend...
by saskaqueer (Friar) on Mar 06, 2005 at 08:05 UTC

    This works fine, and does not clobber $_.

    #!/usr/bin/perl -w use strict; print test(), $/; sub subtest { return 4 } sub test { return $_ if ( local $_ = subtest() ); # continue return 'false'; }