🦋 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.
SmokeMachine Based on lizmat 's post I started playing with the idea of translating map's, grep's and first's blocks to Red::AST at compile-time instead of trying to find out what they are doing at run-time. My first idea is something like this (gist.github.com/FCO/1d9faecbfaaa63...be3d08d8). It would add a named parameter :red-ast on every map/grep/first, methods other than Red's one would just ignore it (methods ignore unknown 02:15
named parameters) and Red's ones would use it instead of the block (if that's defined). Would that make any sense? Does anyone have a better suggestion? Thanks!
tonyo would that require something like a preprocessor? 03:30
SmokeMachine tonyo: I intend to add that as a custom compiler pass (if/when possible) 07:07
lizmat SmokeMachine: looks ok to me, although I would probably take out the grep and put that into the for body 08:38
SmokeMachine lizmat: personal preference, or any reason? 08:39
lizmat: any other reason, I mean.
lizmat performance: you'd only have one level of iterators, instead of 2 08:40
and for me also readability
SmokeMachine lizmat: thanks! I’ll do that
lizmat: and is there a way to add a CHECK phaser from a module and/or add a custom compiler pass? 08:41
lizmat I hope to find out this weekend... :-) 08:42
SmokeMachine :)
lizmat adding a CHECK phaser from a module: maybe the EXPORT sub of a module should also have access to the $*CU of the importer 08:43
then it should be possible
SmokeMachine lizmat: Thanks! Please let me know if/when you find it out! (But I suppose you will make a blog post about that… :) ) 08:44
lizmat yes, I will :-)
SmokeMachine About $*CU… that’s odd to use it because it’s a very bad word in Brazilian Portuguese… 08:45
lizmat ok, maybe we need it to be more explicit: $*COMPUNIT 08:46
well, we have a RaboBank in the NL
:-)
SmokeMachine :)
About EXPORT having access to $*CU, would that be a different variable, right? 08:47
lizmat I guess... $*IMPORTER :-) 08:48
SmokeMachine I think that makes completely sense
SmokeMachine In that case we wouldn’t even need a CHECK, right?! Any change could be done inside EXPORT itself. 08:50
lizmat well,,, hhmmm.... the importer could have been precompiled already
SmokeMachine Willl the importer be already completely parsed when doing the import? 08:51
lizmat also a good question... probably not if it is still source 08:52
there's lots of angles we need to think about here :-)
and also I'm not quite awake yet :-) 08:53
SmokeMachine Maybe it should be able to export a phaser?
(Sorry for keep asking…)
lizmat yeah, stuff like that :-) 08:54
guifa_ votes for the more explicit $*COMPUNIT 09:57
CU is fairly opaque in meaning, and if someone wants a shorter expression, they can always do $CU := $*COMPUNIT or similar 10:00
SmokeMachine: is cu that strong of a word in BP? In EP it's fairly innocuous
SmokeMachine Yes, I’ve heard that in Portugal that means the same as “bunda” in BP, but in BP that’s not the case… 10:54
guifa_: ^^
Nemokosch bunda lol 13:07
librasteve anyone know unix? I can't get eval "$(/root/.rakubrew/bin/rakubrew init Bash)" in .bashrc to run on login ;-( 15:48
El_Che bash in capitals? 15:49
(no idea of how rakudobrew works)
librasteve i'll try lc
jdv knows unix
librasteve nope lowercase made no difference --- I just get rakubrew: command not found 15:51
doing the eval manually (with Bash) in each session works fine
jdv maybe man bash and search for startup and search path stuff? 15:54
El_Che ls -la /root/.rakubrew/bin/rakubrew
is the binary there? 15:55
librasteve yes --- all runs fine if I manually go eval "$(/root/.rakubrew/bin/rakubrew init Bash)" in each session
just when i echo that to my .bashrc it does'nt get picked up on ligin 15:56
jdv: thanks - I will try to do that ...
It is normally run when you start a new login shell (not really desktop session, because you can run a new login shell from the desktop session). As I said, it is run by default, but not if you have created ~/.bash_profile or ~/.bash_login 16:13
oops - I made a .bash-profile!
gist.github.com/librasteve/f609bd6...baa1db1e3a 17:50
^^^ this works fine on 2022.02 but dies on 2023.04 17:51
I don't think I am doing anything wrong (but then I would say that)
[Coke] MoarVM oops: MVM_str_hash_fetch_nocheck called with a stale hashtable pointer 17:54
lizmat librasteve how does it do on 2023.05 ? 17:55
librasteve just building now
Nemokosch > say [+] dss; hm, why would this line work? 17:56
librasteve ^^^ did you check the links to the docs? 17:57
docs.raku.org/type/Iterable
Nemokosch does it say anything about meta-operators? 17:58
librasteve same error 18:01
docs.raku.org/type/List.html#routine_reduce says Returns a single "combined" value from a list of arbitrarily many values, by iteratively applying a routine which knows how to combine two values. 18:03
I then looked at my code and decided that the .iterator method is the one that helps reduce to do the iteration 18:04
that's the great thing about raku ... everything is based on the same lower level building blocks 18:07
Nemokosch yeah well, if the behavior was better defined, like it was thoroughly tested that code X and more explicit code Y must do the same 18:09
anyway, bisectable time
librasteve raku behaviours are fully defined by the ROAST test suite 18:10
lizmat librasteve: adding a method Numeric { self.elems } seems to fix the issue ?
NemokoschKiwi bisectable6: old=2022.02 gist.github.com/librasteve/f609bd6...baa1db1e3a 18:11
bisectable6 NemokoschKiwi, Bisecting by exit code (old=2022.02 new=4b69dd5). Old exit code: 0 18:12
Nemokosch this, without the "fully" part 18:13
bisectable6 NemokoschKiwi, bisect log: gist.github.com/b0a4bb1ebf3d5007f9...84366abe27
NemokoschKiwi, (2023-02-16) github.com/rakudo/rakudo/commit/6b...fb68efa146
librasteve OK - will do that, thanks for the advice
suppers ready - must dash! 18:14
NemokoschKiwi I even checked this commit, should have read the message as well...
librasteve oh just have a quick chance to read the commit message - aha! can someone explain the relationship between reduce() and .iterator - eg. (i) none, (ii) reduce sometimes uses iterator (if so when), (iii) reduce always uses iterator so that I can understand and maybe propose a tweak for the docs? 18:30
Nemokosch this is not reduce() and I suspect they don't even call the same code 18:35
as sad as it sounds
hm, they do, in a rather wild way 18:38
github.com/rakudo/rakudo/blob/a1ac...de.pm6#L20 18:38
I don't know, it's not obvious to me why it's not right 18:48
my guess would be, it revolves somewhere around this "single argument slurpy" +values
yep - if you write a function like perl sub demo(+values) { dd values; } demo(dss); 18:58
you will see that it gives (DataSlice.new(data => Array[Any].new(1, 3, 5, 42, 6, 8)),)
that is: a one-element list with a DataSlice in it
my gut feeling was right: the method you need to overload the most is actually the list method 19:01
if you add method list { @!data.list }
suddenly it will work
Tirifto_ elcaro, wow! I searched for a Curses library on modules.raku.org, but found nothing, so I assumed one just didn’t exist for Raku. 19:58
Tirifto_ I’ll give it a try and see if it covers my needs (which are fairly modest, so probably yes). Thanks for the mention! :D 20:00
(Also thanks nine and [Coke] for help. I ended up writing a wrapping class, as that was ultimately sufficient for my needs.) 20:03
By the way, what’s the ideal way of keeping track of the previous element in a for loop? At the moment I just do ‘state $previous’ at the start of the loop, and ‘$previous = $_’ at the end, but I wonder if there are other straightforward ways? Like passing the block two arguments from the list, but only consuming one of them? (So ‘a b c d’ would get you ‘a b’, ‘b c’, ‘c d’.) 20:07
gfldex Tirifto_: you may want to use `.rotor(2 => -1)` 20:09
Tirifto_ gfldex, thank you, that seems to be what I had in mind! 20:16
Seems like to pass two elements as arguments, one can do ‘.rotor(2 => -1).flat’.
librasteve ++ that' sounds good - I am also toying with delegation so will pull all that together tomorrow 20:23
Nemokosch not gonna lie, I don't know how this + works, it's grammar level and affects QAST generation directly 20:26
but this rule of thumb that "sigils work based on .list" works here as well 20:26
That's why Blob and Buf mostly work as an Iterable, even though they aren't - they provide an appropriate .list method 20:27