74
votes
42answers
8k views
Why do people think functional programming will catch on? [closed]
Possible Duplicates:
Why functional languages?
How can I use functional programming in the real world?
Whenever I browse sites like stackoverflow or reddit there seems to be the crowd of …
36
votes
11answers
2k views
Is the Scala 2.8 collections library a case of “the longest suicide note in history” ?
First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine question, I've made it CW …
25
votes
9answers
1k views
Hidden features of Scala
In the spirit of:
Hidden Features of C#
Hidden Features of Java
Hidden Features of ASP.NET
Hidden Features of Python
Hidden Features of HTML
and other Hidden Features questions
What are the hidden …
22
votes
21answers
3k views
Is Scala the next big thing?
I've been learning Scala recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and …
21
votes
13answers
996 views
Common programming mistakes for Scala developers to avoid
In the spirit of
Common programming mistakes for Java developers to avoid?
Common programming mistakes for JavaScript developers to avoid?
Common programming mistakes for .NET developers to avoid?
…
20
votes
8answers
728 views
Calculating the Moving Average of a List
This weekend I decided to try my hand at some Scala and Clojure. I'm proficient with object oriented programming, and so Scala was easy to pick up as a language, but wanted to try out functional …
20
votes
13answers
2k views
What makes Scala’s operator overloading “good”, but C++’s “bad”?
Operator overloading in C++ is considered by many to be A Bad Thing(tm), and a mistake not to be repeated in newer languages. Certainly, it was one feature specifically dropped when designing Java.
…
19
votes
7answers
1k views
Does Scala scale better then other JVM languages?
Here is the only way I know to ask it at the moment. As Understand it Scala uses the Java Virtual Machine. I thought Jruby did also. Twitter switched its middleware to Scala. Could they have done …
19
votes
12answers
4k views
Which is the best IDE for Scala development?
I like all three of the popular Java IDE's and all three have plug-ins for Scala. I'll probably try all three eventually, but since I'm totally new to the language I figured I'd ask which is the most …
17
votes
3answers
1k views
What are the biggest differences between Scala 2.8 and Scala 2.7?
I've written a rather large program in Scala 2.75, and now I'm looking forward to version 2.8. But I'm curious about how this big leap in the evolution of Scala will affect me.
What will be the …
16
votes
15answers
2k views
What is the best functional language for scientific programming
I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do
Serious Matrix Computation
expressive
real world modelling
database integration
…
16
votes
4answers
406 views
Elements of Scala Style?
By day I write C#. Everything I do goes through Microsoft Code Analysis and Static Analysis tools so my C# has a very regular structure and layout. Obviously I write code with a certain style it …
15
votes
4answers
578 views
Scala doesn’t have enums - what to use instead of an enum
Scala doesn't have type-safe enums like Java has. If I have a set of related constants then what is the best way in Scala to represent those constants?
15
votes
4answers
3k views
Scala vs. Groovy vs. Clojure
Can someone please explain the major differences between Scala, Groovy and Clojure. I know each of these compiles to run on the JVM but I'd like a simple comparison between them.
14
votes
4answers
1k views
Can someone explain Scala’s yield?
I understand Ruby and Python's yield. What does Scala's yield do?
