in reply to Getting a list of aliases to selected items from a list of array references

just another suggestion. haven't read the OP too carefully, so maybe that doesn't fit your needs, but my first thought was to use
( map { $sub->($_->[0]) } @_ ); # instead of &$sub( map { $_->[0] } @_ );
  • Comment on Re: Getting a list of aliases to selected items from a list of array references
  • Download Code