Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced ...
355
votes
18answers
42k views
Is the Scala 2.8 collections library a case of “the longest suicide note in history”? [closed]
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 ...
332
votes
6answers
70k views
Scala vs. Groovy vs. Clojure [closed]
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.
302
votes
11answers
30k views
How can a time function exist in functional programming?
I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
185
votes
22answers
49k views
Which is the best IDE for Scala development? [closed]
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 ...
175
votes
15answers
30k views
Should I use Play or Lift for doing web development in Scala?
I'm stuck on whether I should focus on Play or Lift for doing web development in Scala.
Play looks very polished. The Scala-specific tutorial looks amazing. Furthermore, since I've been coding in ...
161
votes
10answers
32k views
Good use case for Akka
I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many actual examples of use cases it would be good for. So I would be interested in hearing ...
153
votes
3answers
11k views
What does “coalgebra” mean in the context of programming?
I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
153
votes
13answers
38k views
Wanted: Good examples of Scala database persistence [closed]
I would like to use Scala to persist data to a relational database, so what I am looking for are examples of CRUD operations using Scala.
I would like to code on a lower level of abstraction than ...
151
votes
8answers
40k views
Scala Programming for Android
I have followed the tutorial at Scala and Android with Scala 2.7.3 final. The resulting Android App works but even the most basic application takes several minutes (!) to compile and needs 900 kb ...
142
votes
10answers
27k views
Modern alternatives to Java [closed]
I have been a Java developer for 14 years and have written an enterprise-level (~500 kloc) Swing application that uses most of the standard library APIs. Recently, I have become disappointed with the ...
136
votes
8answers
16k views
How do I get around type erasure on Scala? Or, why can't I get the type parameter of my collections?
It's a sad fact of life on Scala that if you instantiate a List[Int], you can verify that your instance is a List, and you can verify that any individual element of it is an Int, but not that it is a ...
114
votes
6answers
23k 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?
112
votes
1answer
3k views
What limits does scala place on the “acceptable complexity” of inferred types?
According to the Scala Language Spec:
... local type inference is permitted to limit the complexity of inferred
bounds [of type parameters]. Minimality and maximality of types have to be ...
109
votes
15answers
10k 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.
...
108
votes
18answers
36k views
What Scala web-frameworks are available?
I've just started learning Scala, and the first thing I'm going to implement is a tiny web application. I've been using Erlang for the last year to implement server-side software, but I've never wrote ...
104
votes
9answers
8k views
Good scalaz introduction
Recently scalaz caught my eye. It looks very interesting, but I have not found any good introduction to the library. Seems that scalaz incorporates a lot of ideas from haskell and mathematics. Most ...
98
votes
2answers
6k views
Where does Scala look for implicits?
An implicit question to newcomers to Scala seems to be: where does the compiler look for implicits? I mean implicit because the question never seems to get fully formed, as if there weren't words for ...
95
votes
5answers
35k views
94
votes
6answers
234k views
How to use java.String.format?
I am trying to use a .format method of a string. But if I place %1, %2 etc in the string, java.util.UnknownFormatConversionException is thrown pointing to a confusing Java source code piece:
private ...
89
votes
9answers
12k views
How to optimize for-comprehensions and loops in Scala?
So Scala is supposed to be as fast as Java. I'm revisiting in Scala some Project Euler problems that I originally tackled in Java. Specifically Problem 5 : "What is the smallest positive number that ...
87
votes
4answers
6k views
What do <:<, <%<, and =:= mean in Scala 2.8, and where are they documented?
I can see in the API docs for Predef that they're subclasses of a generic function type (From) => To, but that's all it says. Um, what? Maybe there's documentation somewhere, but search engines ...
86
votes
2answers
8k views
Scala 2.8 breakout
In Scala 2.8, there is an object in scala.collection.package.scala:
def breakOut[From, T, To](implicit b : CanBuildFrom[Nothing, T, To]) =
new CanBuildFrom[From, T, To] {
def apply(from: ...
85
votes
11answers
25k views
Why would I use Scala/Lift over Java/Spring?
I know this question is a bit open but I have been looking at Scala/Lift as an alternative to Java/Spring and I wonder what are the real advantages that Scala/Lift has over it. From my perspective and ...
84
votes
4answers
6k views
What are some compelling use cases for dependent method types?
Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
83
votes
4answers
18k views
Scala difference between object and class
I'm just going over some Scala tutorials on the Internet and have noticed in some examples an object is declared at the start of the example.
What is the difference between class and object are as ...
82
votes
4answers
12k views
Scala actors: receive vs react
Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems like a very nice ...
80
votes
20answers
16k views
Learning Scala or Haskell [closed]
I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only ...
78
votes
10answers
9k views
What is the difference between scala self-types and trait subclasses?
Self-types seem to be important so I want to know why they are useful. From what I can gather, a self-type for a trait A:
trait B
trait A { this: B => }
says that "A cannot be mixed into a ...
78
votes
4answers
20k views
How to create SBT project with IntelliJ Idea?
I just got started with Scala/LiftWeb/Sbt developing, and I'd like to import a Sbt project in IntelliJ Idea.
Actually, I managed to import my project in two different ways:
1) with Maven. I created a ...
73
votes
13answers
6k views
Interpreting a benchmark in C, Clojure, Python, Ruby, Scala and others [closed]
Disclaimer
I know that artificial benchmarks are evil. They can show results only for very specific narrow situation. I don't assume that one language is better than the other because of the some ...
69
votes
5answers
3k views
Functional design patterns
There are a lot of functional idioms: monads, applicatives, arrows, etc. They are documented in different articles but unfortunately I don't know any book or article where they're summarized in one ...
68
votes
8answers
45k views
Read entire file in Scala?
What's a simple and canonical way to read an entire file into memory in Scala? (Ideally, with control over character encoding.)
The best I can come up with is:
...
67
votes
18answers
15k views
Samples of Scala and Java code where Scala code looks simpler/has fewer lines?
I need some code samples (and I also really curious about them) of Scala and Java code which show that Scala code is more simple and concise then code written in Java (of course both samples should ...
67
votes
9answers
4k views
Building big, immutable objects without using constructors having long parameter lists
I have some big (more than 3 fields) Objects which can and should be immutable. Every time I run into that case i tend to create constructor abominations with long parameter lists. It doesn't feel ...
67
votes
1answer
6k views
What are Scala context and view bounds?
Could someone please explain what context and view bounds is and the difference between them in a simple way. Some easy to follow examples would be great too!
67
votes
1answer
1k views
Documenting Scala 2.10 macros
I'll start with an example. Here's an equivalent of List.fill for tuples as a macro in Scala 2.10:
import scala.language.experimental.macros
import scala.reflect.macros.Context
object TupleExample {
...
66
votes
5answers
15k views
Does the JVM prevent tail call optimizations?
I saw this quote on the question: What is a good functional language on which to build a web service?
Scala in particular doesn't support tail-call elimination except in self-recursive functions, ...
66
votes
3answers
3k views
How do I apply the enrich-my-library pattern to Scala collections?
One of the most powerful patterns available in Scala is the enrich-my-library* pattern, which uses implicit conversions to appear to add methods to existing classes without requiring dynamic method ...
65
votes
7answers
16k views
Case classes vs Enumerations in Scala
Are there any best-practice guidelines on when to use case classes vs extending Enumeration in Scala?
They seem to offer some of the same benefits.
65
votes
2answers
22k views
Scala equivalent of Java java.lang.Class<T> Object
The question is best explained by an example:
In Java for a JPA EntityManager, I can do the following(Account is my Entity class):
Account result = manager.find(Account.class, primaryKey);
In ...
65
votes
10answers
14k views
Logging in Scala
What is a good way to do logging in a Scala application? Something that is consistent with the language philosophy, does not clutter the code, and is low-maintenance and unobtrusive. Here's a basic ...
64
votes
1answer
5k views
Scala 2.10: What is a TypeTag and how do I use it?
All I know about TypeTags is that they somehow replaced Manifests. Information on the Internet is scarce and doesn't provide me with a good sense of the subject.
So I'd be happy if someone shared a ...
63
votes
2answers
23k views
How do I cast a variable in Scala?
Given a variable with type Graphics, how do I cast it to Graphics2D in Scala?
62
votes
20answers
3k views
Why Option[T] ?
I am a beginner to functional programming and I have recently started studying Scala and I really love this language for the all goodies it provides like closures, pattern matching, currying etc.
...
62
votes
7answers
10k views
Learning Scala [closed]
What was your methodology to learn Scala? (exercises? small project? library? manual?)
What surprises have you encountered when you have been learning Scala?
Both subjectively positive and negative.
...
62
votes
2answers
10k views
Scala list concatenation, ::: vs ++
Is there any difference between ::: and ++ for concatenating lists in Scala?
scala> List(1,2,3) ++ List(4,5)
res0: List[Int] = List(1, 2, 3, 4, 5)
scala> List(1,2,3) ::: List(4,5)
res1: ...
60
votes
12answers
21k views
Text editor for scala [closed]
I'm tired of using IDEs for scala because it can take several minutes to write one line of code on my computer (before I started programming in scala I didn't surmise that it is slow). It's a great ...
60
votes
7answers
22k views
On Performance and Java Interoperability: Clojure vs. Scala
I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it ...
59
votes
3answers
7k views
Cleaner way to update nested structures
Say I have got following two case classes:
case class Address(street: String, city: String, state: String, zipCode: Int)
case class Person(firstName: String, lastName: String, address: Address)
and ...
59
votes
5answers
5k views
What is the formal difference in Scala between braces and parentheses, and when should they be used?
What is the formal difference between passing arguments to functions in parentheses () and in braces {}?
The feeling I got from the Programming in Scala book is that Scala's pretty flexible and I ...
