Clojure and Pull Request Controversy
Adam D. Ruppe
destructionator at gmail.com
Thu Nov 29 21:14:29 UTC 2018
On Thursday, 29 November 2018 at 21:11:20 UTC, Daniel Kozak wrote:
> It seems you are right, I have a feeling that this code use
> autodecoding:
> foreach(c; someString){...}
>
> but it seems it does not
Indeed, it iterates over the chars.
You can *request* decoding with
foreach(dchar c; someString) {...}
but that's not auto (nor does it use the library facility, that
is actually built in)
More information about the Digitalmars-d
mailing list