|
|
|
|
|
by nilliams
3743 days ago
|
|
Well with regards to clunkiness and awesomeness, are they not still less 'naturally' composable and (as a result) less readable in composition than collection pipelines? I don't see a good reason to prefer them over: collection
.map(x => x * 2)
...
.filter(isOdd)
.reduce(blargh)
... style syntax that most other modern, C-style languages offer now (ES6, Rust, Ruby, C# ...) |
|