This channel is intended for people just starting with the Raku Programming Language (raku.org). Logs are available at irclogs.raku.org/raku-beginner/live.html
Set by lizmat on 8 June 2022.
habere-et-disper In a method chain, does the hyper operator apply only to the next adjacent routine ? 12:48
lizmat you mean >>. ? yes 12:52
m: dd (1,2,3)>>.Int
camelia (1, 2, 3)
lizmat m: dd (1,2,3)>>.Str
camelia ("1", "2", "3")
lizmat hmmm I'd thought that would generate a Seq actually 12:53
habere-et-disper Yes 12:55
lizmat it appears to generate a List...so indeed, only the adjacent routine, if I understand your question correctly 12:56
note that it cannot be guaranteed that >>. will produce values in the same order 12:57
habere-et-disper =b 12:58