in reply to Re: building combo box
in thread building combo box
A for inside the array ref won't work, but for future reference a map would work fine (but yes it's unneeded in this case since it's easily made with ..-as-list-constructor).
my $array = [ map { transmogrify_foo( $_ ) } 1..31 ];
|
|---|