Tagged Questions
0
votes
2answers
35 views
element from a list wrapped as option
Is there a better/shorter/more concise way to write this?
def elementOrNone[T](values: List[T], index: Int): Option[T] =
values match {
case Nil => None
case _ => ...
2
votes
1answer
119 views
Write performance scala immutable collections
Quick question. I'm currently designing some database queries to extract reasonably large, but not massive datasets into memory, say approximately 10k-100k records.
So far I've been testing loading ...
2
votes
4answers
95 views
Use 4 (or N) collections to yield only one value at a time (1xN) (i.e. zipped for tuple4+)
scala> val a = List(1,2)
a: List[Int] = List(1, 2)
scala> val b = List(3,4)
b: List[Int] = List(3, 4)
scala> val c = List(5,6)
c: List[Int] = List(5, 6)
scala> val d = List(7,8)
d: ...
2
votes
2answers
57 views
Group a list of Scala Ints into different intervals?
I wasn't sure if groupBy, takeWhile, or grouped would achieve what I wanted to do. I need to develop a function that automatically groups a list of numbers according to the interval I want to specify. ...
4
votes
4answers
98 views
Find the first element that satisfies condition X in a Seq
Generally, how to find the first element satisfying certain condition in a Seq?
For example, I have a list of possible date format, and I want to find the parsed result of first one format can parse ...
1
vote
2answers
58 views
Extract values from Array into Tuple
Is there a simple way to extract the values of a list into a tuple in Scala?
Basically something like
"15,8".split(",").map(_.toInt).mkTuple //(15, 8)
Or some other way I can do
val (x, y) = ...
1
vote
2answers
91 views
Distinct Last By
I am searching for a solution with good performance of the following distinctLastBy method:
import scala.language.higherKinds
implicit final class SeqPimp[A, S[A] <: Seq[A]](val s: S[A]) extends ...
2
votes
2answers
68 views
How can I convert Scala Map to Java Map with scala.Float to java.Float k/v conversion
I would like to be able to perform the following, but it fails in the call to useMap. How can I perform this conversion?
scala> import scala.collection.JavaConversions._
import ...
0
votes
2answers
65 views
process bunch of string effective
I need to read some data from a file in chuck of 128M, and then for each line, I will do some processing, naive way to do is using split to convert the string into collection of lines and then process ...
0
votes
1answer
50 views
How to make a Map string as keys and functions as values in scala?
What I would like to do is something like this :
val myMap: Map[String, => String] = Map(
"name1" -> {//functions that does stuff to generate some string},
"name2" -> {//functions that ...
3
votes
3answers
84 views
Difference between sorted and sortBy
According to doc for List
def sorted[B >: A](implicit ord: math.Ordering[B]): List[A]
Sorts this list according to an Ordering.
def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): ...
0
votes
1answer
48 views
Difference between ::: and ++ [duplicate]
For a scala list, what is the difference between
:::
and
++
From doc
::: Adds an element at the beginning of this list.
++ Returns a new list containing the elements from the left hand ...
4
votes
2answers
390 views
How can I add cross product based methods to scala collections?
hopefully this will be a simple question about library pimping (because other questions on that subject tend to generate answers beyond my current skill level).
All I want to do is map over the cross ...
9
votes
3answers
166 views
Lost in the inheritance graph of Scala's collections
Today I wanted to learn about the supertypes of List:
sealed abstract class List[+A] extends AbstractSeq[A]
with LinearSeq[A]
with ...
3
votes
4answers
97 views
How to get distinct items from a Scala Iterable, maintaining laziness
I have a java.lang.Iterable which computes its values lazily. I am accessing it from Scala. Is there a core API way of returning only distinct values? For instance, imaging there was a filter method ...
1
vote
0answers
44 views
ETL:parallel lookup in and insert in scala
For our ETL, the fact data don't have item_key, but have item_number. During the loading, if we can find the item_key for the item_number, then just use it,if can NOT find, then auto create an ...
2
votes
1answer
67 views
Why are there so many Scala collection view types?
I am new to Scala, so I am trying to understand why calls on views return instances of IndexedSeqViewS and similar classes. Why does there need to be a different class for each operation?
3
votes
3answers
177 views
Typeclass and the scala Collection Interface
I am trying to implement a function that would work on types that have a map and a flatMap method. I have already made it for Traversable, but this does not include Future and Option directly. So I ...
3
votes
3answers
188 views
Is there a Java version of Clojure's or Scala's persistent immutable vector?
That is, immutable but data sharing with effectively O(1) indexing.
3
votes
2answers
159 views
Using Scala 2.10 `to` to convert a List to a SortedMap
I am trying to convert a scala.collection.immutable.List of pairs to a scala.collection.immutable.SortedMap using the new to method from Scala 2.10, but I get a compile-time error:
scala> List((1, ...
1
vote
1answer
26 views
Mixin SynchronizedSet with SortedSet having implicit Ordering object
I can't seem to create a SortedSet that also mixes in SynchronizedSet. The crux of the problem is SortedSet requires an implicit Ordering object.
val orderByIdThenName = Ordering[(Int, ...
1
vote
1answer
52 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 ...
0
votes
1answer
45 views
Type inference inconsistency
Let's say I have a wrapper class
case class Cont [E] (e : Seq[E]) {
def :: [E1 >: E] (e1 : Seq[E1]) : Cont[E1] = Cont(e1 ++ e)
def + [E1 >: E] (e1 : Seq[E1]) : Cont[E1] = Cont(e1 ++ e)
}
...
3
votes
2answers
222 views
scala append to a mutable LinkedList
Please check this
import scala.collection.mutable.LinkedList
var l = new LinkedList[String]
l append LinkedList("abc", "asd")
println(l)
// prints
// LinkedList()
but
import ...
2
votes
1answer
48 views
Define a function in Scala that takes an Array of a wildcard as a parameter
I have a seemingly very simple Scala question that's driving me crazy. This:
class A
class B extends A
class C { def foo(a: Array[_ <: A]) { a(0) = a(1) }}
Doesn't compile. It says:
scala> ...
1
vote
1answer
91 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 ...
0
votes
4answers
165 views
Scala conditional list construction
EDIT: I've just remembered that flatten has the same effect as my filter and map
I'm using Scala 2.9.2, and would like to construct a list based on some conditions.
Consider the following, where ...
1
vote
2answers
65 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 ...
3
votes
1answer
73 views
Adding a pairwise difference to generic collections - implicit resolution doesn't kick in
Ok, so I have this:
implicit final class RichIterableLike[A, Repr <: IterableLike[A, Repr]](val it: Repr)
extends AnyVal {
def pairDiff[To](implicit num: Numeric[A], cbf: CanBuildFrom[Repr, ...
0
votes
5answers
159 views
How do I remove an element from a Vector?
This is what I'm doing now:
private var accounts = Vector.empty[Account]
def removeAccount(account: Account)
{
accounts = accounts.filterNot(_ == account)
}
Is there a more readable ...
2
votes
2answers
120 views
Scala lazy collection growth
This question is a bit more theoretical.
I have an object which holds a private mutable list or map, whose growth is append only. I believe I could argue that the object itself is functional, being ...
5
votes
3answers
72 views
Adding a `to[Col[_]]` method for a covariant collection
I am implementing a data structure. While it doesn't directly mix in any of Scala's standard collection traits, I want to include the to[Col[_]] method which, given a builder factory, can generate ...
2
votes
3answers
172 views
Scala List.contains(x) return false, but exists(_.== x) returns true
I'm working with some simple data structures and collections in Scala and I've noticed what I think is strange behavior. Here's the object:
class State (protected val trackmap: Map[Int, ...
4
votes
2answers
159 views
Scala applying implicit functions to a collection
EDIT: I'm using Scala 2.9.2
In Scala, I've defined a custom class which wraps a Double:
class DoubleWrap( d : Double ) {
def double( ) = d * 2
}
and an implicit conversion from Double to ...
1
vote
1answer
66 views
How to get a single item of a Java list in scala?
I have a java.util.list that is supposed to contain exactly one item.
I want to extract this one item, and assert/assume this condition.
I could write something like this:
def single[T](list : ...
3
votes
2answers
112 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
80 views
Create SortedMap from Iterator in scala
I have an val it:Iterator[(A,B)] and I want to create a SortedMap[A,B] with the elements I get out of the Iterator. The way I do it now is:
val map = SortedMap[A,B]() ++ it
It works fine but feels ...
1
vote
1answer
64 views
Returning immutable.Map with covariant type
I have a Container type that is covariant on its type parameter.
class Container[+T](val map: Map[Int, T] = Map.empty[Int, T]){
def add[B >: T](i: Int, b: B) = new Container(map + ...
2
votes
1answer
73 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 ...
4
votes
1answer
69 views
Unexpected Scala collections memory behaviour
The following Scala code (on 2.9.2):
var a = ( 0 until 100000 ).toStream
for ( i <- 0 until 100000 )
{
val memTot = Runtime.getRuntime().totalMemory().toDouble / ( 1024.0 * 1024.0 )
...
0
votes
1answer
106 views
Idiomatic Scala - Performing Functions on Tuple Values
Folks,
I've got the following map and structural type defined:
type Mergeable = { def mergeFrom(data: Array[Byte]): com.google.protobuf.GeneratedMessageLite }
val dispatchMap = Map(
1 -> ...
0
votes
1answer
60 views
In Scala, member of a class is not found when its instance is accessed from a list [Class]
I have a feeling that the problem I am facing has something to do with Type Erasure of Scala, but as a newbie I can't put my fingers on it. Need some help here.
First, the code:
class C (val i: ...
1
vote
1answer
67 views
how to write custom linear collection in scala
I'd like to write custom linear collection. Something like extended List in some specific cases (not for all parameter types).
Scala has complicated collection class hierarchy and I'm lost. What ...
6
votes
1answer
168 views
How to implement a generic algorithm for any Traversable in Scala?
I'm implementing a generic algorithm to return a collection based on two other collections.
The problem can be simplified to
def add[Repr <: Traversable[_]](coll1: Repr, coll2: Repr) = coll1 ++ ...
3
votes
1answer
82 views
Should I use GenSeq by default?
Is it the best practice to use GenSeq as a "default" collection type? It seems to be the most generic collection interface. However I don't see it widely used in code examples (the more specific Seq ...
1
vote
2answers
125 views
Scala nested collection assignment
I'm trying to build a mutable map from integers to a mutable set of integers in Scala.
For example, I would like to have the mappings of the form 1 -> (2,3) and be able to update
them later using the ...
3
votes
1answer
91 views
Convert a List[Task(username, description)] into Map[username,Set[Task]]
(NOTE I'm quit new to Scala and still struggle with most common operations of collection manipulation.)
I would like to convert a List[Task] into a Map. Here's some details:
// assignee may be null
...
3
votes
3answers
101 views
Get all entries having a value from List[Option] in Scala
Is it possible to get all entries of a List[Option[T]] having a value?
Example:
val list = List(None, Some(1), None, Some(2))
list.filter(_.isDefined).map(_.get)
result:
List[Int] = List(1, 2)
...
4
votes
1answer
123 views
Create a custom scala collection where map defaults to returning the custom collection?
The trait TraversableLike[+A, +Repr] allows one to make a collection where some functions will return a Repr, while others continue to return the type parameter That on the function. Is there a way to ...
3
votes
2answers
101 views
Best practices for forwarding collections
I am looking for best practices to create forwarding collections like the in Google Guava:
For example a ForwardingList in Scala would look like:
trait ForwardingList[T]
{
def delegate: ...