🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
tbrowder both those need to be modernized. i would submit a PR if the auths were available. 14:04
ah, i did for the one on github 😃 14:09
roguerakudev Is there a doc page for <->? This is the first I’ve seen that syntax 17:28
scullucs @roguerakudev Turns out that if you search for exactly that at docs.raku.org, you will find this: docs.raku.org/routine/infix%3A%26lt%3B-%26gt%3B 17:35
nahita3882 there's this docs.raku.org/type/Block if it counts 17:36
mentions in the middle 17:37
scullucs @Rog : @Nahita is correct, I pointed to a different <->. 17:43
(I think)
librasteve yeah - infix:<-> (subtraction operator) is the only thing that the index shows ... it's the class Block <-> signature introducer as @nahita3882 mentioned ... 17:51
github.com/Raku/doc/issues/4438 << I have made a doc issue 17:59
roguerakudev Ah, thanks 18:05
gfldex m: for my @a = [1,2,3] -> $_ is rw { $_++ }; dd @a; 23:16
camelia Mu @a = [2, 3, 4]