🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). This channel is logged for the purpose of keeping a history about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | 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 8 June 2022.
00:03 kaskal joined, kaskal- left 00:06 kueppo left 00:07 reportable6 left 00:10 reportable6 joined 00:32 Kaipei left, Kaipei joined 01:32 greppable6 left, bisectable6 left, evalable6 left, reportable6 left, committable6 left, shareable6 left, sourceable6 left, benchable6 left, statisfiable6 left, nativecallable6 left, tellable6 left, linkable6 left, bloatable6 left, notable6 left, coverable6 left, quotable6 left, unicodable6 left, releasable6 left 01:33 statisfiable6 joined, notable6 joined, evalable6 joined, linkable6 joined, coverable6 joined 01:34 tellable6 joined, nativecallable6 joined, sourceable6 joined, reportable6 joined, releasable6 joined, quotable6 joined, greppable6 joined 01:35 bisectable6 joined, bloatable6 joined, benchable6 joined, shareable6 joined, committable6 joined 01:36 unicodable6 joined 02:02 Kaipei left, jjido left 03:02 statisfiable6 left, notable6 left, releasable6 left, unicodable6 left, shareable6 left, quotable6 left, evalable6 left, linkable6 left, coverable6 left, reportable6 left, committable6 left, benchable6 left, sourceable6 left, bloatable6 left, bisectable6 left, tellable6 left, nativecallable6 left, greppable6 left 03:03 quotable6 joined, committable6 joined, greppable6 joined, statisfiable6 joined, bloatable6 joined 03:04 nativecallable6 joined, unicodable6 joined, notable6 joined, releasable6 joined, bisectable6 joined 03:05 coverable6 joined, tellable6 joined, benchable6 joined, reportable6 joined, evalable6 joined, sourceable6 joined, shareable6 joined, linkable6 joined 04:05 greppable6 left, sourceable6 left, nativecallable6 left, tellable6 left, releasable6 left, notable6 left, reportable6 left, evalable6 left, bloatable6 left, benchable6 left, statisfiable6 left, unicodable6 left, coverable6 left, linkable6 left, quotable6 left, bisectable6 left, shareable6 left, committable6 left 04:06 benchable6 joined, bloatable6 joined, shareable6 joined, quotable6 joined, nativecallable6 joined 04:07 committable6 joined, linkable6 joined, notable6 joined, unicodable6 joined, releasable6 joined, sourceable6 joined, evalable6 joined 04:08 coverable6 joined, tellable6 joined, reportable6 joined, greppable6 joined 04:09 statisfiable6 joined, bisectable6 joined 05:09 tellable6 left, reportable6 left, quotable6 left, bloatable6 left, releasable6 left, committable6 left, sourceable6 left, linkable6 left, evalable6 left, shareable6 left, statisfiable6 left, greppable6 left, bisectable6 left, notable6 left, coverable6 left, benchable6 left, nativecallable6 left, unicodable6 left, bisectable6 joined, statisfiable6 joined, releasable6 joined, committable6 joined, bloatable6 joined, nativecallable6 joined, unicodable6 joined 05:10 coverable6 joined, linkable6 joined, sourceable6 joined, evalable6 joined 05:11 shareable6 joined, notable6 joined, reportable6 joined, greppable6 joined, quotable6 joined, tellable6 joined, benchable6 joined 05:17 Kaipei joined 05:33 frost joined 06:08 reportable6 left 06:10 reportable6 joined 06:19 kjp left 06:52 lichtkind joined
Nemokosch uzl: I pointed that out at some point for sure 07:46
github.com/Raku/problem-solving/issues/313 07:50
Not only was `0 min False` and `False min 0` different but even `0 min 2 min False` and `0 min False min False` 07:51
07:52 linkable6 left, evalable6 left
The latter might have been confirmed as a bug and maybe it's fixed now 07:53
07:54 linkable6 joined, evalable6 joined 07:58 Kaipii joined 08:01 Kaipei left 08:28 jmcgnh left 08:48 Sgeo left 08:49 jmcgnh joined 09:19 jjido joined 09:35 Kaipii left 09:51 frost left 10:03 jjido left 10:13 hythm joined
hythm guifa: I see, thanks 10:14
tellable6 2022-06-10T22:30:31Z #raku <guifa> hythm: history, mainly
2022-06-10T22:31:19Z #raku <guifa> hythm: Perl used grep way back in the day, and so Raku (originally conceived as a future version of Perl) similarly used it
10:20 jjido joined 10:24 Kaipii joined 10:37 tejr left 10:42 tejr joined 10:47 Kaipii left 11:21 tejr left 11:46 Kaipii joined 11:48 jjido left 11:57 kaskal- joined 11:59 kaskal left 12:08 reportable6 left 12:09 reportable6 joined
gfldex hythm: grep stands for: globally search for a regular expression and print matching lines 12:20
moon-child g/re/p: (g)lobal (r)egular (e)xpression (p)rint 12:21
Anton Antonov Interesting! 12:28
12:28 ToddAndMargo joined
ToddAndMargo Hi All.  I am over on docs.raku.org/type/Str and I am drawing a blank.   I would like to be able to read and write to a single character index in a string.  For example `my $s = "abxdef"; $s[2]="c"`;  How do I do this? (I need the exact index, not a regex) 12:32
Nemokosch I wonder whose idea it was that strings cannot be indexed... 12:34
however, what you want to do in particular, is not nice either way
mutable strings are way out of fashion
ToddAndMargo can I convert a string into a Buf and then back afterwards? 12:35
sienet_ja_LSD[m] this is it docs.raku.org/routine/substr-rw 12:36
Nemokosch if you want mutability on a per-index base, you'd be better of just using an Array
ToddAndMargo substr-rw will work.  Thank you! 12:37
12:40 thundergnat_ joined
thundergnat_ ToddAndMargo: or perhaps String::Splice? raku.land/github:thundergnat/String::Splice 12:41
ToddAndMargo that is interesting.  I am writing it down for the future! 12:42
12:59 ToddAndMargo left 13:26 Sankalp left, Sankalp- joined 13:27 Sankalp- is now known as Sankalp 13:48 jgaz joined 14:03 Xliff joined 14:06 n1to joined 14:07 jjido joined 14:29 jjido left 14:55 [Coke] left 15:03 [Coke] joined 15:18 jgaz left 15:28 djerius_ joined 15:29 djerius_ left 15:31 djerius_ joined 15:39 [Coke] left 15:48 djerius_ left 15:49 djerius_ joined 15:51 [Coke] joined 15:53 jjido joined
patrickb I fail to find the documentation for the method invocant specifier (or what else it's called), the `method bla(Invocant:D:)` thing in method signatures. Can someone point me to the right place? 16:16
16:29 Sgeo joined
[Coke] It's "invocant marker", I see it on type/Signature but not linked to 16:34
(and with no actual documentation, it's just referenced) 16:35
patrickb Ouch. That's one of the things that will definitely have to be in the "Signature quick intro" we might link to from all signatures in the docs... 16:42
Thanks!
16:43 [Coke] left
uzl[m] <discord-raku-bot> "<Nemokosch#9980> uzl: I pointed..." <- As per 2022.06, both `max 0, False` and `0 max False` return the same value, namely `0`. Where I am confused is with the commit's header "Make &[max] and &[min] return RHS for ties". If `0 max False` returns 0 (as expected), then it's returning its LHS, not its RHS. 16:46
16:53 [Coke] joined
Nemokosch Valid 17:05
17:16 [Coke] left 17:19 melezhik joined
melezhik weekly: www.reddit.com/r/rakulang/comments...la_alpine/ 17:19
notable6 melezhik, Noted! (weekly)
melezhik I am going add alpine package support for Raku modules into SparkyCI soon, using this approach 17:21
so community would enjoy blazingly  fast installation of Raku modules under alpine 17:22
17:25 djerius_ left 17:26 djerius_ joined, melezhik left
Anton Antonov <@779471841270038528> Great! 17:26
17:31 jjido left, [Coke] joined 17:41 jjido joined
SmokeMachine is a point release going to be done? 2022.06 is breaking Red, right? 17:55
17:56 jjido left 18:02 djerius_ left, djerius_ joined 18:07 reportable6 left 18:10 reportable6 joined 18:18 djerius_ left 18:19 djerius_ joined 18:29 djerius_ left, djerius joined
Nemokosch Why is it? 19:07
SmokeMachine Nemokosch: a bug on 2022.06, lizmat gave me a great suggestion on making Red die on that version... so, on my new release this will happen on 2022.06: usercontent.irccloud-cdn.com/file/.../image.png 19:11
tellable6 SmokeMachine, I'll pass your message to Nemokosch
19:36 kjp joined 19:48 mexen joined 20:28 jjido joined 20:42 jgaz joined 21:42 evalable6 left, linkable6 left, linkable6 joined 21:45 evalable6 joined 21:56 jgaz left 22:00 thundergnat_ left 22:28 mexen left 22:53 jjido left 23:16 xinming left 23:17 xinming joined 23:45 n1to left