Aleks-Daniel Jakimenko-Aleksejev

Results 449 comments of Aleks-Daniel Jakimenko-Aleksejev

Are you saying that 「combinations」 and 「permutations」 should be far away from each other? I don't think so. In fact, I always loved how it was more or less sorted...

Yeah, closing this is not helpful. If somebody feels uncomfortable with the current layout then we should do something. There are other interesting ways to tackle this. For example, we...

See also: https://crai.foldr.nl/

Related: https://github.com/orhun/menyoki/issues/43

To be clear, the same examples in react-beautiful-dnd (e.g. https://react-beautiful-dnd.netlify.app/?path=/story/single-vertical-list--basic) work correctly.

Sounds great! But shouldn't it be part of http://docs.perl6.org/ and not the main site?

It's a bit weird because this also doesn't work: ```raku my ($x, **@xs) := 1..100; ``` So it isn't just about infinite ranges. That being said, this works: ```raku my...

What about: ```perl6 my @letters = ; say ‘bah’ ~~ /@letters/ # 「b」 ``` This works now.

Alternatively: ```perl6 my $letters = ‘abcde’; say ‘bah’ ~~ // # 「b」 ```

@jnthn what if the array has something other than single characters? Like multi character strings or empty strings?