Version 2.9 of the Scala language for the JVM.

learn more… | top users | synonyms

1
vote
1answer
59 views

Unable to override java.lang.String field. What is wrong?

I tried to compile code that contains class FixedIndexedRepository(override val name: java.lang.String, location: URI) extends FixedIndexedRepo Which extends FixedIndexedRepo which extends Java ...
3
votes
1answer
85 views

Why must type parameter must be defined in Scala 2.10

I have the following case class: case class Alert[T <: Transport](destination: Destination[T], message: Message[T]) In Scala 2.9.2, the following method signature would compile fine: def ...
1
vote
1answer
78 views

Lift JSON LINQ Like Dynamic Extraction Pattern

I am attempting to perform an XPath based extraction using Lift JSON except that the xpath pattern of extraction is determined during runtime To illustrate, I'd like to convert string "a.b.c.d" to ...
0
votes
2answers
175 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" ...
1
vote
2answers
176 views

Constructor cannot be instantiated to expected type; p @ Person

I am using scala version : Scala code runner version 2.9.2-unknown-unknown -- Copyright 2002-2011, LAMP/EPFL I was trying the deep case matching construct from here: ...
0
votes
0answers
25 views

How to begin on “Creating Simple Build Tool Plugin”?

I want to create a Simple Build Tool Plugin for Scala project. Please any one suggest me how we start? I referred sbt plugin documentation but unable to understand steps. Thx..
1
vote
1answer
16 views

Scala 2.9 : Any way to use toArray on a Set inline

If the answer to my question is already out here please link it... I did look. I'm working through some tutorials and it struck me a little odd that this code: val my_set = Set("one","two","three") ...
0
votes
3answers
490 views

Scala 2.10 vs. 2.9 incompatibilities [closed]

What are the Scala 2.10 vs. 2.9 incompatibilities and how to deal with them? Especially core libraries, but any issues with popular libraries might be interesting. Links to official documents are ...
7
votes
1answer
514 views

In which case can Scala 2.10.0 compiler be faster or slower than 2.9.2?

I did a benchmark for compilation time on Scala 2.10.0 and 2.9.2, and have found that 2.10.0 took longer compilation time than 2.9.2. In which case does it happen? Or can Scala 2.10.0 compiler be ...
0
votes
2answers
257 views

converting Akka's Future[A] to Future[Either[Exception,A]]

Is there a method in Akka (or in the standard library in Scala 2.10) to convert a Future[A] which might fail into a Future[Either[Exception,A]]? I know that you can write f.map(Right(_)).recover { ...
6
votes
1answer
449 views

How can I best troubleshoot “Potentially incompatible versions of dependencies” in sbt

My project gives the following warning: [warn] Potentially incompatible versions of dependencies of {file:/some/path/}default-5bae4a: [warn] org.scala-lang: 2.9.2, 2.9.1 I've got the following ...
9
votes
2answers
212 views

Is there a way to declare an implicit val inside a for comprehension?

I have some code with nested calls to flatMap like so: foo.flatMap(implicit f => bar(123).flatMap(b => /* and so on... implicit f is still in scope here.*/ )) Normally, one would write that ...
4
votes
2answers
219 views

What is the fastest way to subtract two arrays in scala

I have two arrays (that i have pulled out of a matrix (Array[Array[Int]]) and I need to subtract one from the other. At the moment I am using this method however, when I profile it, it is the ...
0
votes
1answer
166 views

Scala Futures - confused by CPU load and output of two approaches

I made a mistake while implementing scala futures, or at least i think I did, and just noticed it however, when I fix the mistake it runs much slower than when I don't use futures. Can someone help me ...
2
votes
2answers
96 views

Scala method call with generic arguments appears not polymorphic - what is wrong

Can't figure out why is this wrong or how to resolve it. Here's "distilled" code that reproduces the problem. Please help, but I'd appreciate none of the "why" questions - there are very real and ...
3
votes
2answers
148 views

Match more than one element in collection

Define: val x = List(1, 2, 3, 4) I want to find if x contains either 1 or 3. One way is x.contains(1) || x.contains(3) another is x.exists(y => y == 1 || y == 3) and another is: ...
1
vote
3answers
108 views

What is the difference between “Array.fill(2)(new A)” and “val a=new A; Array.fill(2)(a)”?

Minimal Working Example (Scala 2.9.2): object Main extends App { class A { var a=0 } val b = Array.fill(2)(new A) b(1).a = 9 println(b(0).a) //prints 0 println(b(1).a) //prints 9 ...
2
votes
1answer
102 views

Akka reliable proxy with typed actors?

I just read about reliable proxies in akka, but I couldn't find a way to use them with typed actors. What would be the best way to achieve that?
4
votes
2answers
184 views

Using ListView from Scala 2.9.2 with Java 7 gives compile error

I'm working on a project that use scala 2.9.2 and java 7. What I'm trying to do is create a GUI using the scala ListView. Here's a small code snippet: private val listView = new ...
0
votes
0answers
66 views

Play Framework 2.0.4 with Scala 2.9.2 [duplicate]

Possible Duplicate: Using scala 2.9.2 with Play? Could you please advise whether it is possible to use Play Framework 2.0.4 together with scala 2.9.2 ? Scala 2.9.2 contains fix for ...
2
votes
1answer
111 views

How to import class using fully qualified name?

create file test1.scala with following code: package test import java.io.FileInputStream object Foo create another file test2.scala with following code: package test.java object Bar Now ...
2
votes
2answers
2k views

Getting started with Scala, Scalatest, and Maven

I created a new scala project with the following: mvn org.apache.maven.plugins:maven-archetype-plugin:2.2:generate -DarchetypeGroupId=org.scala-tools.archetypes ...
0
votes
1answer
3k views

coin change algorithm in scala using recursion

I am trying to program the coin change problem in Scala using recursion. The code that i have written is as follows. def countChange(money: Int, coins: List[Int]): Int = { def ways(change: ...
3
votes
1answer
106 views

Should I report this assertion failure? What is $asInstanceOf anyway?

If you bother the Scala compiler (2.9.1 or 2.10.0-M7) with this really bad snippet of code... null.$asInstanceOf[Int] ... it throws an assertion failure. Questions: What is $asInstanceOf? Should I ...
1
vote
2answers
154 views

Scala implicit conversion blocked somehow

I wrote a small service with Scalatra that does two things: serve JSON data serve same data as an Excel sheet JSON is done with spray-json, Excel - with apache POI Basically, I wrote two methods ...
4
votes
1answer
148 views

How can I override a method with a dependent return type?

I'm having trouble in Scala 2.9.2 implementing a method which declares a dependent return type. The following code object DependentTypesQuestion { def ??? = throw new UnsupportedOperationException ...
2
votes
3answers
507 views

Scala 2.9 won't run HelloWorld on Ubuntu 12.04

This one should be simple, but I can't figure it out myself. I have scala 2.9.1 installed on an Ubuntu 12.04 system. The file is helloworld.scala object HelloWorld{ def ...
3
votes
2answers
340 views

Step by step guide to get Scala to run on .net?

I have never used .Net framework and need to demonstrate to someone that Scala indeed works on .Net. I need to get a "quick and dirty" .Net setup with Scala working on some existing JVM Scala code. I ...
3
votes
1answer
130 views

scala version of swap algorithm for null models

The problem I am having is with trying to find an efficient way to find swappable elements in a matrix in order to implement a swap algorithm for null model creation. The matrix consists of 0's and ...
1
vote
1answer
74 views

Actor not response

Take a look at the code snippet: import scala.actors.Actor._ object ActorTest1 extends Application { val caller = self val badActor = actor { receive { case msg => ...
3
votes
1answer
183 views

Scala 2.8 vs 2.9 benchmark, strange results

Some time ago, I wrote some code to decide which method of updating mutable variable with new value (but without creating new objects) is faster. One method uses a temporary value and there is an ...
0
votes
1answer
387 views

Scala-IDE: How to compile and execute multiple source code files in Eclipse?

I am reading Martin Odersky's Programming in Scala, and I have been using vi and the command line to compile so far. I want to learn to use Eclipse and the Scala-IDE plug-in, but I lack a basic ...
4
votes
1answer
225 views

Sealed Trait / Object Case Class Byte Code Changed from 2.9.1. to 2.9.2?

Same source file in both directories I have the following sealed trait in Errors.scala that I would like to reference in a Java class. In Scala 2.9.1, I was able to reference Errors.TooBig from Java ...
6
votes
1answer
193 views

Why does Scala define a “+=” operator for Short and Byte types?

Given the following scala code: var short: Short = 0 short += 1 // error: type mismatch short += short // error: type mismatch short += 1.toByte // error: type mismatch I don't ...
5
votes
2answers
273 views

How do you make a list with 100 1s in Scala 2.9

In earlier versions of scala you can use List.make(100, 1). But that is not deprecated. What is the new proper way to do it?
3
votes
1answer
141 views

Is there a workaround for Scala 2.9.1's buggy fsc Ant task?

The fsc Ant task provided with Scala 2.9.1 is buggy (issues SI-5174 and SI-5196): if the compile fails, everything proceeds as normal. If the compile succeeds, on the other hand, then an internal ...
4
votes
1answer
307 views

What is the easiest 2D game library to use with Scala?

I need to integrate a scala library for reinforcement learning that works on scala 2.9.1 with a 2D game library. If it uses SBT that would be awesome. I was looking at scage, however the current ...
6
votes
1answer
140 views

Why doesn't scala's parallel sequences have a contains method?

Why does List.range(0,100).contains(2) Work, while List.range(0,100).par.contains(2) Does not? This is planned for the future?
1
vote
1answer
60 views

Combining parsers when lexing an SGMLish document in Scala

I'm new to lexing and parsing in entirety beyond small cases. With that caveat given, my problem is that I'm trying to parse a JSP like dialect in Scala. I am lexing the char stream and when I get ...
3
votes
3answers
132 views

Is it possible to print values during collect without modifying return type?

I have a code segment something like this: def test() : Seq[Int] = List("A", "B", "C") collect { case "A" => 1 case "B" => 2 //case _ => println(_) } Now I would like to ...
1
vote
0answers
43 views

Implementation of abstract traits in with clause [duplicate]

Possible Duplicate: In Scala how can I advise my own methods? Assume: trait SomeAbstractTrait { val transform : Int => Int } Why does the following work: new SomeClass() ...
1
vote
1answer
500 views

counting down in scala for loop [duplicate]

Possible Duplicate: Decreasing for loop in Scala? While working through Scala For The Impatient, I came upon the following exercise: Write a Scala equivalent for the Java loop for ...
7
votes
1answer
838 views

scala === operator in scala koans

I started working my way through the Scala Koans, which is organized around a suite of unit tests with blanks that one needs to fill in. (This idea was modeled after a similar Ruby Koans project.) ...
5
votes
1answer
180 views

What is Scala REPL's tab completion telling me here?

While working my way through Cay S. Horstmann's "Scala for the Impatient", I noticed something interesting revealed by the first exercise in the first chapter. In the Scala REPL, type 3. followed by ...
6
votes
3answers
167 views

Generic collect by type in scala

In Scala 2.9.1 With def collectFirstOfT[T](la: List[_])(implicit m:Manifest[T]) : Option[T] = { la.collect{case x if m.erasure.isAssignableFrom(x.getClass) => x}. ...
1
vote
1answer
276 views

How can I use Scala's MurmurHash implementation: scala.util.MurmurHash3?

I'm writing a BloomFilter and wanted to use Scala's default MurmurHash3 implementation: scala.util.MurmurHash3. My compile is failing however with the following compile error: [error] ...
6
votes
3answers
284 views

Modifying a large file in Scala

I am trying to modify a large PostScript file in Scala (some are as large as 1GB in size). The file is a group of batches, with each batch containing a code that represents the batch number, number of ...
0
votes
1answer
242 views

How to detect the user click a hyper-link, Web browser made in scala

I am making a simple web browser in Scala 2.9. This is only using HTML no css, javascrip etc. I used EditorPane to show website. Can anyone tell me how to detect Hyper link on that page and when user ...
0
votes
4answers
79 views

Inner class with upper bound

I'd like to create a generic class with type parameter T which then creates instances of an inner class wrapping values of type T. I thought that if I used upper bound to tell that T must be subtype ...
4
votes
2answers
1k views

Scala List Comprehensions

I'm trying to generate a list in scala according to the formula: for n > 1 f(n) = 4*n^2 - 6*n + 6 and for n == 1 f(n) = 1 currently I have: def lGen(end: Int): List[Int] = { for { n <- ...

1 2