-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent resultant type of +@
slurpy when given a Seq
#6306
Comments
From @zoffixznetSome discussion: https://irclog.perlgeek.de/perl6-dev/2017-06-02#i_14675550 The crux of it is the type of `+@` slurpy changes, depending on the input, though on further examinations it seems only Seq is affected: m: sub grab(+@a) { dd @a }; grab %(:42a, :72b); grab (1, (2, 3)); grab [1, (2, 3)]; grab (1, (2, 3)).Seq In all of the examples above, the `@a` ends up being an Array, except for the last case (with Seq input), where it's a List. This leads to two issues: Seems like the Seq case needs fixing so it ends up being an Array as well. |
From @zoffixznetOn Fri, 02 Jun 2017 05:26:14 -0700, cpan@zoffix.com wrote:
Closing this in favour of rakudo/rakudo#1355 , which points out additional inconsistencies. |
@zoffixznet - Status changed from 'new' to 'rejected' |
Migrated from rt.perl.org#131483 (status was 'rejected')
Searchable as RT131483$
The text was updated successfully, but these errors were encountered: