5 ms·
By productive you mean having developers repeatedly manually create loops that are the poor and verbose equivalents of map(), filter(), and reduce()? Out of go,
by srparish 7y ago
By productive you mean having developers repeatedly manually create loops that are the poor and verbose equivalents of map(), filter(), and reduce()? Out of go, scala, c++, java, python, typescript; go is the least productive language I've used in the last decade.
- jahaja 7y ago100% Yes.
- nemo1618 7y agoI tried my hand at writing generic map/filter/reduce once, and it turned out to be more nuanced than I thought. Do you want to modify the array in-place, or return new memory? If your reduce operation is associative, do you want to do it parallel, and if so, with what granularity? If you're setting up a map->filter->reduce pipeline on a single array, the compiler needs to use some kind of stream fusion to avoid unnecessary allocations; how can the programmer be sure that it was optimized correctly? And so on. If you want to write code that's "closer to the metal," these things become increasingly important, and it's probably impossible to create a generic API that satisfies everyone. That said, I wouldn't mind having a stdlib package with map/filter/reduce implementations that are "good enough" for non-performance-critical code.
- apta 7y ago> I tried my hand at writing generic map/filter/reduce once, and it turned out to be more nuanced than I thought. Rust and Java both have good APIs for this kind of work. Take a look at their approaches.
- nitwit005 7y agoA lot of the clever helpers like that in Java unfortunately often trigger extra allocations, making them slower, as the above post implied.
- cle 7y agoIndeed, and they are even worse than that, because Streams in Java can even be parallel streams and be processed by a thread pool. So it’s not enough to know that it’s a Stream, you have to know what kind of Stream, and if it’s a parallel Stream, what threadpool is it using? How big is it? What else uses it? What’s the CPU and memory overhead of the pool? What happens when a worker thread throws an exception? Etc. These are all hidden by the abstraction but are usually things we always care about as consumers of the abstraction.
- apta 7y agoThe introduction of value types in the JVM should hopefully alleviate this.
- cle 7y agoI've seen more bugs due to the cognitive overhead of reduce than writing a for loop. And then you don't have to wonder "Hmm is this a lazy stream? Concurrent?" You just look at the code, and know. (And I almost did a spittake thinking about C++ being more productive than Go.)
- apta 7y ago> I've seen more bugs due to the cognitive overhead of reduce than writing a for loop. And then you don't have to wonder "Hmm is this a lazy stream? Concurrent?" You just look at the code, and know. Out of curiosity, in which language(s) were those written in?
- cle 7y agoI’ve seen confusion over reduce happen in Java, Ruby, Groovy, JavaScript, Scala, and Python. Reduce is quite elegant for certain kinds of problems. But in most practical settings, knowing when to reach for reduce vs something else is hard to know, and everyone has different opinions on it. Personally, I like to sidestep those kinds of decisions/discussions whenever I can, because it just gets in the way of actually delivering stuff.
- ereyes01 7y agoFor loops and their map/filter/reduce functional equivalents to me are just that: equivalent constructs, two styles/paradigms of doing the same thing. Can you elaborate on why one is poorer and the other much more productive in absolute terms?
- tqkxzugoaupvwqr 7y agoNot OP. I work with TypeScript and Go, and switching back and forth, I find it much easier to express my thoughts in TypeScript and just write them out without getting bogged down in the tiniest details every single time I want to map, filter or reduce something. Go is verbose in that way which makes me lose my train of thought because of a lot more typing, and it makes it harder for me get the gist of code because I have to actually read and not gloss over the Go loops to make sure they do what I think they do. TypeScript/JavaScript: const itemIDs = items.map((item) => item.ID) Go: itemIDs := make([]uint64, 0, len(items)) for _, item := range items { itemIDs = append(itemIDs, item.ID) }