Results 20 comments of Wenzel P. P. Peppmeyer

As b2gills pointed out, one can use `method ::("R[Int]")() {}` to get the same result without the MOP. This is specced in S02-names/indirect.t and an ENODOC. At least to my...

"chatlogs.raku.org" may be better. We already got a Discord server and more platforms may follow.

None of the MONKEYs are inherently unsafe. They may have consequences the user has to take into account tho. The term MONKEY was choosen deliberately because monkey-typing is a well...

To me the following is desireable: ``` # spectest: $a .= uc .= lc; # demand: ($a .= uc).lc; #fail as ambiguous for $a .= uc.lc; ```

If this issue is fixed, please file an issue in the docs repo.

`` is documented as `"Always succeed" assertion`.

Having the docs in one file allows for full text search and easy offline access to (most) of the docs. It can be used to print the docs without much...

`raku -e 'use v6.*; my $n = 1024; sub crash(@c = (2 .. $n).snip(* < $n)) { @c.elems }; crash'` does crash with about 20% hitrate on `Linux dexhome 6.1.0-5-amd64...

I would like the remind all interested parties, that extra named arguments are *not* ignored: ``` my method m(){} &m.signature.say; # (Mu: *%_) ``` They are stored in the implicite...