🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Logs available at irclogs.raku.org/raku-dev/live.html | For MoarVM see #moarvm
Set by lizmat on 8 June 2022.
finanalyst .tell lizmat just sent you an email about RakuDoc/highlighting conflict 13:57
tellable6 finanalyst, I'll pass your message to lizmat
releasable6 Next release in ≈4 days and ≈23 hours. There are no known blockers. Please log your changes in the ChangeLog: github.com/rakudo/rakudo/wiki/ChangeLog-Draft 19:00
Geth rakudo/splice-is-item-again-twice: ffa22b4607 | ab5tract++ | src/core.c/Array.rakumod
[6.e] Dispatch in Array.splic based in `is item` trait

This allows the following to DWIM:
   > my @a = 1,2,3;
   > @a.splice(1,1,$[7,8])
   # [1,$[7,8],3]
21:46
rakudo/splice-is-item-again-twice: 5941c33a91 | ab5tract++ | src/core.c/Array.rakumod
[6.e] Dispatch in Array.splice based in `is item` trait

This allows the following to DWIM:
   > my @a = 1,2,3;
   > @a.splice(1,1,$[7,8])
   # [1,$[7,8],3]
ab5tract Is this ^^^ the best, or at least a workable, way to check language versions? 21:50
I wasn't sure whether the entire version check could be safely stored in an anonymous state variable 21:54
Geth rakudo/splice-is-item-again-twice: 7f1c0b7424 | ab5tract++ | src/core.c/Array.rakumod
[6.e] Dispatch in Array.splice based in `is item` trait

This allows the following to DWIM:
   > use v6.e.PREVIEW;
   > my @a = 1,2,3;
   > @a.splice(1,1,$[7,8])
   # [1,[7,8],3]
22:40
Geth rakudo: ab5tract++ created pull request #5630:
[6.e] Dispatch in Array.splice based in `is item` trait
22:43