Skip to content

Commit

Permalink
Seq interpolation needs .list
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed Aug 29, 2015
1 parent 61c6af6 commit 6d66f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S06-signature/unpack-array.t
Expand Up @@ -44,7 +44,7 @@ is blat( 2, [2,3,4] ), "2-3-4", 'unpack named array with named pieces';
return flat fsort-only(@r.grep( {$_ <= $p} )),$p,fsort-only(@r.grep( {$_ > $p} )) if $p || @r;
}
multi fsort-multi([$p?,*@r]) {
return flat fsort-multi(@r.grep( {$_ <= $p} )),$p,fsort-multi(@r.grep( {$_ > $p} )) if $p || @r;
return |fsort-multi(@r.grep( {$_ <= $p} ).list),$p,|fsort-multi(@r.grep( {$_ > $p} ).list) if $p || @r;
}

#?niecza 2 todo "https://github.com/sorear/niecza/issues/180"
Expand Down

0 comments on commit 6d66f99

Please sign in to comment.