All Questions
2 questions
5
votes
3
answers
3k
views
Significant difference between functional and procedural collection handling [closed]
I'm planning an empirical study on function passing - specifically lambdas aka anonymous functions aka arrow functions. Now, although functional or even object-oriented approaches are highly favored ...
3
votes
2
answers
263
views
In Functional Programming, should domain-relevant simple functions (e.g., sorts) be reified?
In a functional application, should you wrap common higher-level functions in domain-meaningful names or should you leave them "bare"?
For instance, if you have a list of Addresses, and "sorted by ...