All Questions
3 questions
5
votes
3
answers
528
views
Interface at the class or function level?
I have been falling into a pattern lately where I have been defining routines that rely on an interface defined by a function that is specified as a parameter to the routine. (The language is C#, but ...
41
votes
5
answers
24k
views
Is a lambda expression something more than an anonymous inner class with a single method?
There is a new hype with the long awaited lambda expressions in Java 8; every 3 day another article appears with them about how cool they are.
As far as I have understood a lambda expression is ...
31
votes
3
answers
3k
views
What are the benefits and disadvantages in the approaches of C#, Java and Scala to Closures/Lambdas/...?
I wonder what the technical implementation differences between C# and Scala are and how both solutions compare to the implementation ideas and concerns voiced in the email Peek Past lambda by Brian ...