Darren Duncan
Darren Duncan
> Once all of the libraries are converted to .netstandard2.0 the path for moving GUI code to a cross platform future is to begin to multitarget with .net6 and framework....
@n8allan I notice at least some of this commit doesn't seem to use the same kind of line indents as the code it is being added to, as seen in...
Following up, ```select Concat(list(String){'29','x','42'},",")``` works as expect and has just the 2 commas between the 3 elements, where ```select Concat(",", list(String){'29','x','42'})``` fails to match a routine signature; thus there is...
Well the main detail of importance as far as I'm concerned is that name-value pairs have the name on the left; what symbols if any go between them is of...
@n8allan : The proper usage for version-numbered branches like 2.2 and 3.0 is to be maintenance branches for released production versions. Likewise, the master/trunk is only for things that are...
I support changing the documentation from "currying" to "priming". The change makes the documentation more correct, and just because some people were accustomed to using words in the wrong way...
@codesections wrote: > I didn't see this until now, but [S06 makes this point explicitly](https://design.raku.org/S02.html#Autopriming_of_Unary_and_Binary_Operators_with_Whatever): > > > Perl 6 has several ways of performing partial function application. Since this...
My general thought on the matter of Unicode is that less is more. We should only be providing Unicode versions of ASCII things where there is a clear benefit. To...
To further clarify my previous comment, the best time to use Unicode is when Unicode contains the IDEAL versions of symbols that we wanted all along, where the ASCII versions...
I find that the best way to characterize an interval (a Range) is that it is a set of values such that the set is possibly of infinite cardinality, eg...