Re: seeking golfing advice
[email protected] (Aristotle Pagaltzis) Thu, 17 May 2012 12:14:59 +0200
| Newsgroups | perl.fwp |
|---|---|
| Message-ID | <[email protected]> |
* Mike Erickson <[email protected]> [2012-05-16 15:45]: > If you don't care about order, but just want those elements, you can > also do: > > keys%{{@a}} There is more than order that gets lost. If you use `keys` you also get everything back stringified – undefs are lost and references break. If you use `values` these problems go away… except that to get the odd- index elements from it you have to `reverse` the array, at which point a not-especially-golfed grep is shorter. -- *AUTOLOAD=*_;sub _{s/$/$"/;s/(.*):://;wantarray//substr$_,-1,1,",$/";print;$1} &Just->another->Perl->hack; #Aristotle Pagaltzis // <http://plasmasturm.org/>