Library Design: Naming Conventions – Streaming

https://soc.me/languages/naming-conventions-streaming

3 points · 1 comments · view on lemmy.world

1 Comments

bitcrafter@programming.dev · 2 pts · 245d

The very first example on that page is:

List(1, 2, 3).map(_ + 1)
--> List(1, 2, 3)

I have a really hard time taking seriously a language that does the wrong thing when asked to add one to each element in a list...