Re: A FatRat.base issue

2020-10-06 Thread Aaron Sherman
This report was a long time ago. Entirely possible that it's been resolved. On Fri, Oct 2, 2020, 2:58 PM William Michels wrote: > On Thu, Mar 21, 2019 at 5:17 PM Aaron Sherman wrote: > > > > Here's four commands using my Math::Sequence module (note that the > difference between the first and

Re: Language Design: 'special casing' of split()? (i.e. .split performs concomitant .join? )

2020-10-06 Thread Tobias Boege
On Tue, 06 Oct 2020, William Michels via perl6-users wrote: > [...] > > So my question regards "special-casing" of split/join in Raku. Is the first > result on comma-delimited data the default, i.e. joining disparate elements > of an array together head-to-tail? Or is the second result on >

Language Design: 'special casing' of split()? (i.e. .split performs concomitant .join? )

2020-10-06 Thread William Michels via perl6-users
Hello All, I'm trying to understand Raku's split/join rules. Below is REPL code and output. I start by studying a 2-element Array in line A (three letters separated by commas in each element, 6 letters total). In line B, I perform a split/join and end up with a 1 element result. Since I started