> On 23 Jul 2017, at 03:48, Zoffix Znet (via RT)
> wrote:
>
> # New Ticket Created by Zoffix Znet
> # Please include the string: [perl #131783]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=131783 >
>
>
> The current b
> On 23 Jul 2017, at 03:48, Zoffix Znet (via RT)
> wrote:
>
> # New Ticket Created by Zoffix Znet
> # Please include the string: [perl #131783]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=131783 >
>
>
> The current b
# New Ticket Created by
# Please include the string: [perl #131785]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131785 >
Greetings!
I have written a module to process some numeric data types and found
that the run time wi
Rakudo itself probably does compile on Windows 32-bit (or least it did
last time I tried it).
But here is no Rakudo Star 32 bit MSI due to problems with modules not
working -- I think linenoise failed to compile last time I tried it
(and I believe it only works under GCC not MSVC on 64 bit).
I'm
> Which then goes back to: what is the use case of Slipping an Array?
Same as slipping any other type of Iterable: Fine-grained, elegant flattening
and concatenating.
Compare:
my @all = flat $first, @rest;
my @all = $first, |@rest;
When you *know* that $first is a Scalar and @rest is an A
Another interesting thing is that if this is implemented, then it will make it
possible to use ? in other places where is used. For example, it
will allow %h:?exists . It seems that it will also affect character classes
(e.g. <:?Ll>). Some of these totally make sense, some not so much. But we
alre