Working on list.pm today and again trying to work around the fact that perl 5 prototypes don't apply to methods (thus, I want to export a handy one-character function which is a shortcut to saying "sub {...}" -- Yes, I'm saving all of two characters and a space. If that doesn't sound worthwhile, move along, nothing to see here.)
First, charge the batteries in your propeller beanie...
I had previously settled on _{...} (e.g. "sub _(&) {$_[0]}"), but then discovered the mysterious globalness of *_ and so now I'm using F{...}, but wanting something slightly more meaningful.
use utf8;
sub λ (&) {$_[0]};
λ{print "foo"}->();
Excellent! No, I'm not putting that in the API just yet, but I'm seriously thinking about it. The only trick is to get the keyboard and/or vim setup worked-out so that it's not any harder to type than s-u-b-<space>.
vim digraphs (Score:1)
vim magic for this from my
Re: (Score:1)
Uh, make that ctrl+k l*. That's a lot harder to type than sub , so I'd go for the imap option.
Re: (Score:1)
imap <C-L> λ{}<ESC>:set encoding=utf8<CR>i
And of course, you could just make that type "sub {" for you as well, but lambda reads better
Offer Alternatives (Score:2)
If it's a public interface, maybe offer an alternative?
—Theory