Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

237
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 ...
63
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 ...
60
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) ...
25
votes
3answers
1k views

Why is Scala's immutable Set not covariant in its type?

EDIT: Re-written this question based on original answer The scala.collection.immutable.Set class is not covariant in its type parameter. Why is this? import scala.collection.immutable._ def foo(s: ...
22
votes
4answers
5k views

Scala collection standard practice

Coming from a Java background, I'm used to the common practice of dealing with collections: obviously there would be exceptions but usually code would look like: public class MyClass { private ...
21
votes
1answer
577 views

How are scala 2.9 parallel collections working behind the scenes?

Scala 2.9 introduced parallel collections. They are a really great tool for certain tasks. However, I'm wondering how they work internally and if I'm able to influence the behavior/configuration. ...
20
votes
5answers
5k views

scala Iterable#map vs. Iterable#flatMap

What is the difference between the map and flatMap functions of Iterable?
20
votes
7answers
14k views

Converting Java collection into Scala collection

Related to this question, how do convert a Java collection (java.util.List say) into a scala collection List? EDIT; what I am actually trying to do is convert a Java API call to Spring's ...
18
votes
2answers
436 views

Scala: What are views for collections and when would you want to use them?

In Scala, for many (all?) types of collections you can create views. What exactly is a view and for which purposes are views useful?
17
votes
1answer
680 views

Stream vs Views vs Iterators

What are the differences among Streams, Views (SeqView), and Iterators in scala? These are my understandings: They are all lazy lists. Streams caches the values. Iterators can only be used once? You ...
17
votes
4answers
2k views

Use-cases for Streams in Scala

In Scala there is a Stream class that is very much like an iterator. The topic Difference between Iterator and Stream in Scala? offers some insights into the similarities and differences between the ...
16
votes
4answers
924 views

Google guava vs Scala collection framework comparison

There are a lot of common concepts: immutable collection, collection view, strict/non strict collection, collection builders same patterns in Guava and Scala Collection API. So what is the ...
15
votes
2answers
196 views

What is the difference between JavaConverters and JavaConversions in Scala?

In scala.collection, there are two very similar objects JavaConversions and JavaConverters. What is the difference between these two objects? Why do they both exist? When do I want to use one vs. ...
14
votes
2answers
255 views

Scala: What is the difference between Traversable and Iterable traits in Scala collections?

I have looked at this question but still don't understand the difference between Iterable and Traversable traits. Can someone explain ?
14
votes
5answers
656 views

Why is filter in front of foldLeft slow? (Scala)

I wrote an answer to the first Project Euler question: "Add all the natural numbers below one thousand that are multiples of 3 or 5." The first thing that came to me was: (1 until ...
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
1answer
752 views

scala parallel collections degree of parallelism

Is there any equivalent in scala parallel collections to LINQ's withDegreeOfParallelism which sets the number of threads which will run a query? I want to run an operation in parallel which needs to ...
12
votes
3answers
999 views

In Scala 2.8, what type to use to store an in-memory mutable data table?

Each time a function is called, if it's result for a given set of argument values is not yet memoized I'd like to put the result into an in-memory table. One column is meant to store a result, others ...
11
votes
3answers
112 views

Inconsistent behaviour for xs.sliding(n) if n is less than size?

According to scaladoc, sliding() returns... "An iterator producing iterable collections of size size, except the last and the only element will be truncated if there are fewer elements than size." ...
11
votes
4answers
1k 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)) ...
11
votes
3answers
2k views

Difference between Array and List in scala

In what cases I should use Array(Buffer) and List(Buffer). Only one difference that I know is that arrays are nonvariant and lists are covariant. But what about performance and some other ...
11
votes
3answers
772 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
884 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
4answers
5k views

Scala best way of turning a Collection into a Map-by-key?

If I have a collection c of type T and there is a property p on T (of type P, say), what is the best way to do a map-by-extracting-key? val c: Collection[T] val m: Map[P, T] One way is the ...
9
votes
1answer
95 views

What is the current element in a Scala DoubleLinkedList?

I'm looking at using a DoubleLinkedList. It's remove() method says "Removes the current node from the double linked list." but there are no other references to current in the page. What is the ...
9
votes
2answers
239 views

Scala: Contains in mutable and immutable sets

I've discovered a strange behavior for mutable sets which I cannot understand: I have a object which I want to add to a set. The equals method for the class is overridden. When I add two different ...
9
votes
3answers
186 views

Dealing with the surprising lack of ParList in scala.collections.parallel

So scala 2.9 recently turned up in Debian testing, bringing the newfangled parallel collections with it. Suppose I have some code equivalent to def expensiveFunction(x:Int):Int = {...} def ...
9
votes
1answer
2k views

how to sort a scala.collection.Map[java.lang.String, Int] by its values?

How would you sort a scala.collection.Map[java.lang.String, Int] by its values (so on the Int)? What is a short and elegant way to do that?
9
votes
2answers
634 views

scala implicit or explicit conversion from iterator to iterable

Does Scala provide a built-in class, utility, syntax, or other mechanism for converting (by wrapping) an Iterator with an Iterable? For example, I have an Iterator[Foo] and I need an Iterable[Foo], ...
9
votes
2answers
916 views

Convert Scala Set into Java (java.util.Set)?

I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String]. Is the following the correct way to do this in Scala ...
8
votes
2answers
682 views

Create an immutable list from a java.lang.Iterator

I'm using a library (JXPath) to query a graph of beans in order to extract matching elements. However, JXPath returns groups of matching elements as an instance of java.lang.Iterator and I'd rather ...
8
votes
4answers
532 views

Difference between MutableList and ListBuffer

What is the difference between Scala's MutableList and ListBuffer classes in scala.collection.mutable? When would you use one vs the other? My use case is having a linear sequence where I can ...
8
votes
3answers
472 views

How to write a zipWith method that returns the same type of collection as those passed to it?

I have reached this far: implicit def collectionExtras[A](xs: Iterable[A]) = new { def zipWith[B, C, That](ys: Iterable[B])(f: (A, B) => C)(implicit cbf: CanBuildFrom[Iterable[A], C, That]) = { ...
8
votes
4answers
427 views

What's a good and functional way to swap collection elements in Scala?

In a project of mine one common use case keeps coming up. At some point I've got a sorted collection of some kind (List, Seq, etc... doesn't matter) and one element of this collection. What I want to ...
8
votes
2answers
3k views

Converting mutable to immutable map

private[this]object MMMap extends HashMap[A, Set[B]] with MultiMap[A, B] How convert it to immutable?
7
votes
3answers
201 views

Does it make any sense to use pattern matching in Scala with really simple cases?

In 'Programming in Scala, Second Edition' at page 410 you can find class Simulation which have the following method: private def next() { (agenda: @unchecked) match { case item :: rest => ...
7
votes
1answer
158 views

Semantics of Scala Traversable, Iterable, Sequence, Stream and View?

There are other questions such as Scala: What is the difference between Traversable and Iterable traits in Scala collections? and How would I get the sum of squares of two Lists in Scala? that answers ...
7
votes
2answers
190 views

What does param: _* mean in Scala?

Being new to Scala (2.9.1), I have a List[Event] and would like to copy it into a Queue[Event], but the following Syntax yields a Queue[List[Event]] instead: val eventQueue = Queue(events) For some ...
7
votes
1answer
153 views

How to append or prepend on a Scala mutable.Seq

There's something I don't understand about Scala's collection.mutable.Seq. It describes the interface for all mutable sequences, yet I don't see methods to append or prepend elements without creating ...
7
votes
2answers
265 views

Scala collection memory footprint characteristics

There is a handy page about Performance Characteristics of the Scala collection classes. Does anybody have similar data on memory footprint? I have a situation where I'm concerned about memory ...
7
votes
7answers
908 views

Scala performance question

In the article written by Daniel Korzekwa, he said that the performance of following code: list.map(e => e*2).filter(e => e>10) is much worse than the iterative solution written using ...
7
votes
1answer
274 views

scala 2.8 collections inconsistency?

why the methods transform (in-place mutation version of map) and retain (in-place mutation version of filter) are defined on only mutable.Map but not on mutable.Buffer and mutable.Set? shouldnt all ...
7
votes
2answers
779 views

Scala Immutable MultiMap

In Scala I would like to be able to write val petMap = ImmutableMultiMap(Alice->Cat, Bob->Dog, Alice->Hamster) The underlying Map[Owner,Set[Pet]] should have both Map and Set immutable. ...
7
votes
5answers
585 views

O(1) conversion from mutable.Map to immutable.Map?

Is there a way to convert (wrap) a mutable Map to immutable in O(1) time (that is, not by copying the values, but similar to what is done in JavaConversions)
7
votes
3answers
4k views

How to convert from from java.util.Map to a Scala Map

A Java API returns a java.util.Map<java.lang.String,java.lang.Boolean>;. I would like to put that into a Map[String,Boolean] So imagine we have: var scalaMap : Map[String,Boolean] = Map.empty ...
6
votes
3answers
114 views

How to functionally merge overlapping number-ranges from a List

I have a number of range-objects which I need to merge so that all overlapping ranges disappear: case class Range(from:Int, to:Int) val rangelist = List(Range(3, 40), Range(1, 45), Range(2, 50), ...
6
votes
2answers
106 views

Using scala vararg methods in java

Why do all scala vararg methods, when used from java, seem to accept a Seq of variables, and can't be used as java native vararg methods. Is this a bug? For instance, Buffer has method def ...
6
votes
5answers
196 views

How to write tuple range function in scala?

I want following function range((1,1), (2,2)) which return Seq[(Int,Int)]((1,1),(1,2),(2,1),(2,2)) It is analog for one dimensional range with 1 to 2 The function should work for any scala tuple ...
6
votes
3answers
177 views

Writing a generic 'fill' method

I am trying to write a generic fill method, and following is what I have come up with so far: scala> import collection.generic.{GenericTraversableTemplate => GTT} import ...
6
votes
4answers
175 views

How to group a variable-length, repeating sequence in Scala

I have a collection of ints that repeat themselves in a pattern: val repeatingSequence = List(1,2,3,1,2,3,4,1,2,1,2,3,4,5) I'd like to section that List up when the pattern repeats itself; in this ...

1 2 3 4 5