in reply to Re^4: Short invocation for per-object methods
in thread Short invocation for per-object methods

I use it for file slurping (local $/) and for DBI (local $dbh->{'AutoCommit'}). The latter looks strange, but works because of the way DBI is implemented, and makes AutoCommit automatically snap back to its old value when I leave the current scope.
  • Comment on Re^5: Short invocation for per-object methods