Thread overview
101 LINQ examples in D
May 24, 2017
Pradeep Gowda
May 24, 2017
Seb
May 24, 2017
Pradeep Gowda
May 24, 2017
Inspired by Demis Bellot's "Kotlin LINQ examples" [1], I have started a github repo to port the 101 LINQ examples to D - https://github.com/btbytes/dlang-linq-examples

So far, I've completed one section on "Restriction Operators". It has been a fun exercise. More examples to come!


[1] https://github.com/mythz/kotlin-linq-examples
May 24, 2017
On Wednesday, 24 May 2017 at 16:06:01 UTC, Pradeep Gowda wrote:
> Inspired by Demis Bellot's "Kotlin LINQ examples" [1], I have started a github repo to port the 101 LINQ examples to D - https://github.com/btbytes/dlang-linq-examples
>
> So far, I've completed one section on "Restriction Operators". It has been a fun exercise. More examples to come!
>
>
> [1] https://github.com/mythz/kotlin-linq-examples

Have a look at my summary: https://github.com/wilzbach/linq

(I never published it, because it's not perfect and I ran out of time because for some functions there isn't an equivalent match in Phobos)
May 24, 2017
On Wednesday, 24 May 2017 at 16:27:20 UTC, Seb wrote:
> On Wednesday, 24 May 2017 at 16:06:01 UTC, Pradeep Gowda wrote:

> Have a look at my summary: https://github.com/wilzbach/linq

This is cool! Thank you.