On Thu, Sep 21, 2006 at 12:43:41AM +0200, Juerd wrote:
: > my @bar = @{ $q->param->{ 'bar' } };
:
: my @bar = $q.param<bar>.'@';
: my @bar = @ $q.param<bar>;
That should work but my preference is just
my @bar = $q.param<bar>[];
That is, empty .[] has the same arrayifying semantics as @. (This is
currently b0rken in pugs though.) Likewise .{} is equivalen to %.
Larry
