Tagged Questions
Version 2.8 of the Scala language for the JVM.
232
votes
18answers
31k 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 ...
59
votes
4answers
3k 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 ...
59
votes
2answers
5k 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: From) ...
58
votes
2answers
8k views
Scala 2.8 collections design tutorial
Following on from my breathless confusion, what are some good resources which explain how the new Scala 2.8 collections library has been structured. I'm interested to find some information on how the ...
39
votes
3answers
5k views
What are Scala continuations and why use them?
So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't ...
34
votes
1answer
3k views
Function syntax puzzler in scalaz
Following watching Nick Partidge's presentation on deriving scalaz, I got to looking at this example, which is just awesome:
import scalaz._
import Scalaz._
def even(x: Int) : ...
33
votes
4answers
7k views
What is a “context bound” in Scala?
One of the new features of Scala 2.8 are context bounds. What is a context bound and where is it useful?
Of course I searched first (and found for example this) but I couldn't find any really clear ...
31
votes
14answers
9k views
Which IDE for Scala 2.8?
This is the same question for older version of Scala, but they say that Eclipse plugin has been improved vastly. Is it the best IDE now? How do different Scala IDE compare today?
24
votes
11answers
10k views
How to use Scala in IntelliJ IDEA (or: why is it so difficult to get a working IDE for Scala)?
I recently gave up trying to use Scala in Eclipse (basic stuff like completion doesn't work). So now I'm trying IntelliJ. I'm not getting very far.
I've been able to edit programs (within syntax ...
20
votes
2answers
752 views
Don't understand the typing of Scala's delimited continuations (A @cpsParam[B,C])
I'm struggling to understand what precisely does it mean when a value has type A @cpsParam[B,C] and what types of this form should I assign to my values when using the delimited continuations ...
20
votes
5answers
2k views
What are the good Scala IDEs at the start of 2010?
I know this is an exact duplicate, but a year has gone by and Scala seems to be a fast moving thing, so I figure it might be acceptable to ask again:
What is the best IDE for Scala development right ...
19
votes
1answer
884 views
Does the @inline annotation in Scala really help performance?
Or does it just clutter up the code for something the JIT would take care of automatically anyway.
19
votes
7answers
983 views
Questions about Scala from a Rubyist
I have recently been looking around to learn a new language during my spare time and Scala seems to be very attractive.
I have a few questions regarding it:
Will not knowing Java impose a
challange ...
19
votes
2answers
3k views
Implementing yield (yield return) using Scala continuations
How might one implement C# yield return using Scala continuations? I'd like to be able to write Scala Iterators in the same style. A stab is in the comments on this Scala news post, but it doesn't ...
18
votes
3answers
6k views
How to write to a file in scala?
For reading there is the useful abstraction Source. How can I write lines to a text file?
18
votes
3answers
632 views
What Is the Concept of “Weak Conformance” in Scala?
I just recently encountered the term "Weak Conformance" (in retronym's answer to How to set up implicit conversion to allow arithmetic between numeric types?).
What is it?
17
votes
1answer
2k views
How do I enable continuations on Scala 2.8 and beyond?
Since version 2.8, Scala includes the continuations plugin, but the details of how to get access to the shift and reset operations changed. Old blog entries and SO answers may still reference the old ...
17
votes
3answers
972 views
What compromises Scala made to run on JVM?
Scala is a wonderful language, but I wonder how could be improved if it had it's own runtime?
I.e. what design choices were made because of JVM choice?
16
votes
2answers
617 views
Elegant way to reverse a map in Scala
Greetings,
Learning Scala currently (2.7.7) and needed to reverse a Map to do some reverse value->key lookups. I was looking for a simple way to do this, but came up with only:
(Map() ++ ...
15
votes
3answers
640 views
When is @uncheckedVariance needed in Scala, and why is it used in GenericTraversableTemplate?
@uncheckedVariance can be used to bridge the gap between Scala's declaration site variance annotations and Java's invariant generics.
scala> import java.util.Comparator
import ...
15
votes
2answers
657 views
Scala Actors: Different behavior on JRE 1.5 and 1.6
My simulation is using actors and Scala 2.8-Snapshot. In Java JRE 1.5 it runs well - all 40 gears (actors) are working simultaneously. Using Java JRE 1.6 only 3 gears are working simultaneously. I ...
14
votes
1answer
2k views
scala 2.8 CanBuildFrom
Following on from another question I asked, I wanted to understand a bit more about the Scala method TraversableLike[A].map whose signature is as follows:
def map[B, That](f: A => B)(implicit bf: ...
13
votes
3answers
372 views
Minimal framework in Scala for collections with inheriting return type
Suppose one wants to build a novel generic class, Novel[A]. This class will contain lots of useful methods--perhaps it is a type of collection--and therefore you want to subclass it. But you want ...
13
votes
5answers
1k views
Targeting Android with Scala 2.8 Trunk builds
The definitive reference for using Scala on android seems to be here: http://www.scala-lang.org/node/160
Unfortunately, all the references on using scala with android are based around Scala 2.7 and ...
13
votes
6answers
857 views
Have you actually convinced anybody to Scala?
I had limited success myself. I was able to hype a few persons about Scala.
But in fact none of them made a meaningful effort to try to switch (usually from Java).
I would like to read both success ...
13
votes
2answers
5k views
How to create and use a multi-dimensional Array in Scala 2.8
in Scala 2.8 how do I create an array of multiple dimensions? For example I want an integer or double matrix, something like double[][] in java.
I know for a fact that arrays have changed in 2.8 and ...
13
votes
3answers
2k views
Scala collection type for filter
Assume you have a List(1,"1") it is typed List[Any], which is of course correct and expected. Now if I map the list like this
scala> List(1, "1") map {
| case x: Int => x
| case ...
12
votes
2answers
571 views
Advanced book on Scala 2.8
Christmas is coming along fast and I want to put up a Scala book on my wishlist. However, I consider myself a medium++ user of Scala after using it on and off for almost a year. I am a major in ...
12
votes
6answers
892 views
Writing functions of tuples conveniently in Scala
Quite a few functions on Map take a function on a key-value tuple as the argument. E.g. def foreach(f: ((A, B)) ⇒ Unit): Unit. So I looked for a short way to write an argument to foreach:
> val ...
12
votes
2answers
606 views
Using scala.util.control.Exception
Does anybody have good examples of using scala.util.control.Exception? I am struggling to figure it out from the types.
12
votes
3answers
707 views
What are nested/unnested packages in Scala 2.8?
In Scala 2.7, I could write:
package com.acme.bar
class Bar
.
package com.acme.foo
class Foo {
new bar.Bar
}
This doesn't compile in Scala 2.8 -- however this does:
package com.acme
...
12
votes
1answer
2k views
What's the new way to iterate over a Java Map in Scala 2.8.0?
How does scala.collection.JavaConversions supercede the answers given here:
http://stackoverflow.com/questions/495741/iterating-over-java-collections-in-scala
(doesn't work because the "jcl" ...
12
votes
3answers
588 views
How to split and dispatch an async control-flow using Continuations?
I have an asynchronous control-flow like the following:
ActorA ! DoA(dataA, callback1, callbackOnErrorA)
def callback1() = {
...
ActorB ! DoB(dataB, callback2, callbackOnErrorB)
}
def ...
12
votes
2answers
2k views
Overload constructor for Scala's Case Classes?
In Scala 2.8 is there a way to overload constructors of a case class?
If yes, please put a snippet to explain, if not, please explain why?
11
votes
2answers
1k views
11
votes
3answers
409 views
How to unimport String “+” operator in Scala?
I'm writing a DSL where the "+" operator is strictly numeric, like some other popular languages. It's close, but the String "+" operator is messing up my implicit conversions. What's the syntax for ...
11
votes
3answers
751 views
In Scala 2.8 collections, why was the Traversable type added above Iterable?
I know that to be Traversable, you need only have a foreach method. Iterable requires an iterator method.
Both the Scala 2.8 collections SID and the "Fighting Bitrot with Types" paper are basically ...
11
votes
1answer
864 views
How do I implement a collection in Scala 2.8?
In trying to write an API I'm struggling with Scala's collections in 2.8(.0-beta1).
Basically what I need is to write something that:
adds functionality to immutable sets of a certain type
where ...
11
votes
2answers
548 views
What is the difference between a view and a stream?
In the Scala 2.8 collections framework, what is the difference between view and toStream?
11
votes
1answer
2k views
cannot find class manifest for element type T
Was trying to compile some code from this SO question and run into this error message cannot find class manifest for element type T. Here is another snippet that shows the behavior:
scala> def ...
10
votes
4answers
999 views
Scala foldLeft on Maps
How do you use Map.foldLeft? According to the docs it looks like
foldLeft [B] (z: B)(op: (B, (A, B)) ⇒ B) : B
But I'm having difficulty:
Map("first"->1,"second"->2).foldLeft(0)((a,(k,v)) ...
10
votes
1answer
304 views
Is the PartialFunction design inefficient?
This is something I've wondered about for a while. I see this pattern a lot:
if (pf.isDefinedAt(in)) pf(in)
By breaking this up into two separate calls, all of the patterns that were evaluated in ...
10
votes
1answer
703 views
Proxies / delegates in Scala
I've seen several Scala questions recently (e.g. here, here, and here) that called for the use of proxies, and it's come up more than once in my own work. The Scala library has a number of proxy ...
10
votes
1answer
2k views
How can Scala actors return a value in response to a message?
There are plenty of examples of actors replying with another message back to the sender, but whilst browsing the API docs I noticed the !! and !? operators which are part of the CanReply trait (which ...
9
votes
1answer
165 views
Strange behavior of Set4 in scala 2.9.1?
Making a migration from 2.8.1 to 2.9.1 found interesting thing.
Tried to write this in console:
>>import collection.immutable.Set.Set4
>>new Set4[Int](1,2,3,4)
It gives:
...
9
votes
3answers
652 views
How to find same-value rectangular areas of a given size in a matrix most efficiently?
My problem is very simple but I haven't found an efficient implementation yet.
Suppose there is a matrix A like this:
0 0 0 0 0 0 0
4 4 2 2 2 0 0
4 4 2 2 2 0 0
0 0 2 2 2 1 1
0 0 0 0 0 1 1
Now I ...
9
votes
2answers
395 views
Covariant Typeparameter in scala needs to be invariant in java interface
I've got a trait that looks like this (some further information can be found at this related question by myself although I don't think, it's needed for this question)
trait Extractor[-A,+B] {
def ...
9
votes
4answers
548 views
Package objects
Could someone please explain package objects, not so much the concept but their usage.
I've tried to get an example working and the only form I got to work was as follows:
package object ...
9
votes
2answers
863 views
Scalaz: request for use case for Cokleisli composition
This question isn't meant as flame-bait! As it might be apparent, I've been looking at Scalaz recently. I'm trying to understand why I need some of the functionality that the library provides. Here's ...
9
votes
1answer
592 views
Function.tupled and placeholder syntax
I have seen this usage of Function.tupled example in another answer: Map(1 -> "one", 2 -> "two") map Function.tupled(_ -> _.length).
It works:
scala> Map(1 -> "one", 2 -> "two") ...