Collection library for Scala Programming Language

learn more… | top users | synonyms

0
votes
2answers
40 views

How can I break a collection into batches?

I have a simple task here: break a Set of n elements into m Sets based on a batch size - typically I'll want to limit my sub-Sets to 1,000 elements. I wrote something like this, where input is the ...
1
vote
1answer
57 views

Understanding Scala's flatmap type conversions

The docs for List state: The type of the resulting collection is guided by the static type of list. This might cause unexpected results sometimes. For example: // lettersOf will return a ...
9
votes
5answers
282 views

Why is there an Option.get method

Why is the method get defined in Option and not in Some? One could apply pattern matching or use foreach, map, flatMap, getOrElse which is preferred anyway without the danger of runtime exceptions if ...
0
votes
1answer
60 views

Patch Seq using Queue

I'm writing a simulation where a number of operators take work from a single queue. At each time step I need to sequentially check elements of a sequence, and if a condition passes replace the ...
1
vote
0answers
39 views

Custom collection in Scala on Android - TraversableFactory crashes with NoClassDefFoundError

I'm trying to implement a custom collection, so I'm following this post. Now, the 'bare' code that leads to a crash is this: object TraversableCollection extends ...
3
votes
1answer
69 views

Migrating Java TreeMap code to Scala?

I am migrating my Java code base to pure Scala and I am stuck on this one piece of code. I have an implementation of an IntervalMap i.e. a data structures that let's you efficiently map ranges ...
1
vote
1answer
95 views

Why does new fail?

In scala this is ok val v = Vector(1,2,3) This is not ok val v = new Vector(1,2,3); You get: java.lang.NullPointerException //| at ...
1
vote
2answers
70 views

Return type of Scala for/yield

I'm reading through Scala for the Impatient and I've come across something that's got me scratching my head. The following returns a String: scala> for ( c<-"Hello"; i <- 0 to 1) yield ...
1
vote
2answers
70 views

SCALA: Which data structures are optimal in which siutations when using “.contains()” or “.exists()”?

I would like to know in which situations which data structures are optimal for using "contains" or "exists" checks. I ask because I come from a Python background and am used to using if x in ...
1
vote
1answer
81 views

scala, transform a callback function to an iterator/list

For the sake of this question, I have the following example code which I cannot change: trait Receiver[T] { def receive(entry: T); def close(); } def f1(r: Receiver[Int]) { new ...
0
votes
4answers
72 views

Summing up two options

Let's say I have two optional Ints (both can be Some or None): val one : Option[Int] = Some(1) val two : Option[Int] = Some(2) My question, fine gentlemen, is the following: Are there any ...
0
votes
1answer
42 views

extending scala collections for a specific member type

I want to do something like class Pack extends collection.immutable.List[Dog]{ def pullSled() = //... } But the Scala compiler tells me illegal inheritance from sealed class List This would be ...
2
votes
3answers
104 views

Iterable[Try[(K, V)]] to Try[Map[K, V]]

I have a method load which is relatively expensive to call. In order to allow some kind of exception handling during loading it returns a Try. I need now an implementation for the loadAll method which ...
0
votes
3answers
124 views

Option[Map[String, String]] can get value weirdly.

I found Option[Map[String, String]] works weirdly like this: scala> val fileInfo: Option[Map[String, String]] = Some(Map( "type" -> "hoge" )) fileInfo: Option[Map[String,String]] = ...
2
votes
1answer
145 views

Scala and Java interop. of Future

In this problem I have to call a third-party Java library that expects a java.util.concurrent.Future with a result from a Scala routine returning a scala.concurrent.Future as for example. def ...
1
vote
2answers
102 views

How to make a scala collection contain unique elements? (“unique” defined)

Say I have a list as follows: val l = List( (1, 2, "hi"), (1, 3, "hello"), (2, 3, "world"), (1, 2, "hello") ) I want to make the elements of l distinct ignoring the 3rd element of the tuple. That ...
1
vote
1answer
44 views

How do I specify a newBuilder for a scala set?

I am trying to extend a set of integers in Scala. Based on an earlier answer I have decided to use a SetProxy object. I am now trying to implement the newBuilder mechanism as described in chapter 25 ...
0
votes
1answer
14 views

Scala counting map objects with specific attribute

I have referrals: Map[String, Referral] and am looking for the best way to count how many of those Referral objects have a certain phase attribute. case class Referral( name: String, phase: ...
3
votes
2answers
118 views

Does Scala have a 'unique list' type?

I'm looking for something like the immutable SortedSet, except I want elements to be ordered in the sequence they were passed into the constructor. UniqueList(4,2,3,1,1) // Throws exception ...
2
votes
1answer
82 views

Scala collection for grouping while maintaining order

I have something like this case class Job(workId: Int, users: List[String]) val jobs = IndexedSeq(Job(1, List("a", "b")), Job(2, List("b", "c")), Job(3, List("a", "c" )), Job(4, List("d", "b"))) I ...
2
votes
2answers
127 views

How to invert a map in scala? [duplicate]

What is the shortest/idiomatic way to invert from Map[K, V] to Map[V, Iterable[K]] in Scala?
1
vote
1answer
47 views

Does collection.mutable.HashMap have an efficient size method?

I am using collection.mutable.Map which defaults to collection.mutable.HashMap. I need to keep track of the number of items in that map, so I would like to know whether this class already implements a ...
7
votes
2answers
163 views

Scala's TreeSet vs Java's TreeSet - poll?

If I want to remove the highest entry in log(n) time in Java's TreeSet, I use treeSet.pollFirst() - what is the equivalent for Scala's mutable.TreeSet class? Anyway, what I really want is a heap-like ...
0
votes
0answers
69 views

Extension of scala collections with composite bounded generic types

I'm rather new to Scala, and I feel like I've jumped into the Scala deep end. I need to write a couple (err, extend) of collections (one similar to ArrayBuffer and one similar to Array) that works ...
0
votes
1answer
62 views

Scala types/collections when interfacing with Java and vice versa

When interfacing with a scala library in java, or a java library in scala, are there certain types or collections that don't map efficiently such that you have to perform "expensive" operations to ...
1
vote
1answer
78 views

Should Scala immutable case classes be defined to hold Seq[T], immutable.Seq[T], List[T] or Vector[T]?

If we want to define a case class that holds a single object, say a tuple, we can do it easily: sealed case class A(x: (Int, Int)) In this case, retrieving the "x" value will take a small constant ...
1
vote
1answer
99 views

How does Scala's mutable Map update [map(key) = newValue] syntax work?

I'm working through Cay Horstmann's Scala for the Impatient book where I came across this way of updating a mutable map. scala> val scores = scala.collection.mutable.Map("Alice" -> 10, "Bob" ...
1
vote
1answer
80 views

Strange results when using Scala collections

I have some tests with results that I can't quite explain. The first test does a filter, map and reduce on a list containing 4 elements: { val counter = new AtomicInteger(0) val l = List(1, ...
4
votes
2answers
101 views

Efficient groupwise aggregation on Scala collections

I often need to do something like coll.groupBy(f(_)).mapValues(_.foldLeft(x)(g(_,_))) What is the best way to achieve the same effect, but avoid explicitly constructing the intermediate collections ...
1
vote
2answers
63 views

Retrieve builder from a scala collection

How can I retrieve builder from a scala collection being agnostic about it realization? I've restricted argument type to be descendant of TraversableLike, but it's newBuilder method is protected and I ...
1
vote
2answers
83 views

Structural Type Parameters in Scala Collections

Disclaimer: This is a question of what is possible, not what would be recommended in practice. Let's say you're given the following classes: case class point1(x: Int, y:Int) case class point2(x: ...
0
votes
2answers
171 views

Scala Map Transformation

Can someone recommend a functional way to transform the map specified below from Map("host.config.autoStart.powerInfo[1].startOrder" -> -1, "host.config.autoStart.powerInfo[1].startAction" ...
0
votes
1answer
83 views

Override toString in a Scala set

I want to create a set of integers called IntSet. IntSet is identical to Set[Int] in every way except that its toString function prints the elements as comma-delimited (the same as if you called ...
1
vote
1answer
63 views

Uncurrying/tupling a multidimensional array in Scala?

Say I have an e.g. two-dimensional array, and I'm storing some indexes in tuples: val testArray = Array.ofDim[Double](3, 4) val ixs = (1,2) I'd like to use those tuples directly, e.g. ...
2
votes
2answers
90 views

scala collection conversions

What is the most effective way of conversion between different scala.collection object? E.g. val a=scala.collection.mutable.ListBuffer(1,2,0,3) And I want to get ...
2
votes
1answer
72 views

Scala: Parallel collection in object initializer causes a program to hang?

I've just noticed a disturbing behavior. Let's say I have a standalone program consisting of a sole object: object ParCollectionInInitializerTest { def doSomething { println("Doing something") } ...
5
votes
1answer
68 views

Constructing Scala parallel views with X.par.view vs X.view.par?

According to the paper on parallel collections and searching on the internet, parallel collections are supposed to work with views, but I am not clear on the difference between ...
2
votes
1answer
89 views

Why is Buffer not a subclass of IndexedSeq?

In the scala collections library Buffer inherits from Seq: Buffer[A] extends Seq[A] with GenericTraversableTemplate[A, Buffer] with BufferLike[A, Buffer[A]] with scala.Cloneable and the Buffer ...
0
votes
2answers
116 views

Scala: efficient iteration over multiple iterators

I'm writing an application server and there is a message sending loop. A message is composed of fields and thus can be viewed as an iterator that iterates over the fields. And there is a message queue ...
5
votes
2answers
184 views

Scala: idiomatic way to merge list of maps with the greatest value of each key?

I have a List of Map[Int, Int], that all have the same keys (from 1 to 20) and I'd like to merge their contents into a single Map[Int, Int]. I've read another post on stack overflow about merging ...
1
vote
1answer
115 views

implement a multiset/bag as Scala collection

Inspired by this question, I'd like to implement a Multiset in Scala. I'd like a MultiSet[A] to: Support adding, removing, union, intersection and difference Be an A => Int, providing the count ...
2
votes
0answers
114 views

Scala in Tomcat 7 - HttpServletRequest.getHeaderNames returns java.util.Collection instead of Enumeration?

when using Scala with Tomcat 7, HttpServletRequest.getHeaderNames() apparently returns java.util.Collection instead of java.util.Enumeration as indicated in docs. Does some implicit conversion happen ...
3
votes
2answers
105 views

Concrete Map#empty leading to design smell when creating a custom Map extension

I am attempting to write a ForwardingMutableMap trait, a la Guava's ForwardingMap for Java. Here's what my fist attempt looked like: trait ForwardingMutableMap[K, V, +Self <: mutable.MapLike[K, ...
2
votes
1answer
110 views

Using “contains” matcher on Scala lists in Scala test

I'm trying to check that a list of case classes contains a specific instance of one, however when I attempt to do so I get the following error: [info] Compiling 1 Scala source to ...
1
vote
1answer
86 views

Scala SortedMap : Get all keys greater than a given key

Given a Scala collection.SortedMap and a key k, what is the most efficient way of getting all keys (or even better, all key-value pairs) greater than k stored in the sorted map. The returned set of ...
2
votes
2answers
89 views

How to idiomatically iteratively flatMap a collection against its own members?

A simple class with flatMap/map that does nothing but lazily store a value: [Note1: this class could be replaced with any class with flatMap/map. Option is only one concrete example, this question ...
3
votes
3answers
118 views

Is there any method that does the same thing as map() but generates a different type of container?

Sometimes I need to create a collection by mapping another one with different type. For example, some function needs List[_] as its parameter type, but I need to produce that by mapping a ...
2
votes
2answers
241 views

How to use priority queues in Scala?

I am trying to implement A* search in Scala (version 2.10), but I've ran into a brick wall - I can't figure out how to use Scala's Priority Queue. It seems like a simple task, but searching on Google ...
3
votes
3answers
118 views

Multi-key Map in Scala

How can I create a Map in Scala which does not only take a single parameter as key, but rather two or three. val map = //..? map("abc", 1) = 1 println(map("abc", 2)) // => null println(map("abc", ...
2
votes
1answer
72 views

Function analog for .map for a collection that changes during processing?

I have the problem of trying to 'process' (as in, 'run a function on') elements in a collection, like you would do with map or foreach. The problem is that the collection can change during processing ...

1 2 3 4 5 8