Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced ...

learn more… | top users | synonyms

1
vote
2answers
53 views

Regex parse a list of comma separated number ranges, and capture them in individual groups

I found the following regex for matching comma separated numbers or ranges of numbers: val reg = """^(\d+(-\d+)?)(,\s*(\d+(-\d+)?))*$""".r While this does match valid strings, I only get one String ...
0
votes
1answer
120 views

Akka. How to scale-up? [closed]

What things would need to be done to scale-up (scale horizontally) an application written using Akka? Roughly speaking, for adding a new node in cluster, do I only need to install a JRE on it and run ...
0
votes
0answers
32 views

sbt outOfMemoryError during 'compiler-interace' compilation

Will admit this one is beyond my ability to debug. Looks like SBT runs out of memory while it compiles the interface for the compiler. Not sure why, since I have 4GB extra of free memory and I haven't ...
0
votes
3answers
56 views
+150

Scala Play 2.0. Compilation error: IO error while decoding

I downloaded multi-module Scala project from GitHub, and one of the module is Play 2.0 module. So I can run whole application using SBT's run command on each module, and all works fine. But when I add ...
2
votes
1answer
39 views

How to access Groovy nested enum in Scala?

Scala has trouble accessing: // Groovy class Outer { enum Enum { VALUE } } What needs to be done to allow Scala to access the enum?
0
votes
2answers
89 views

Use scalaz in console repl without creating a project

Is there any way to use scalaz by simple scala command in the terminal, without creating sbt project?
0
votes
0answers
78 views

How do I convert a wrongfully encoded Java UTF-8 String to the correct encoding [duplicate]

Let say that that I have accidentally created a String with new String(bytes, "UTF-8") so Med vänliga hälsningar becomes Med v?nliga h?lsningar That String should actually be created with new ...
1
vote
1answer
49 views

SBT. Clean local repository

How I can delete my project from local repository? I previously published it using publish-local SBT command. I want to clean all compiled and cached stuff because I don't see any changes in my ...
1
vote
4answers
72 views

Do async GET like in a loop but wait for response for each

I've googled this and cannot find an answer. I want to make a GET to a url in Scala/play framework and then do something with the result. If the result contains what I want then I want to call it ...
2
votes
2answers
78 views

Where am I iterating over my ResultSet one time too many? or why is it closed?

I am using anorm to access data on my DB. The DB is written to using another service, which is made in Java, and persist using ebean. I have the following scala object import java.sql.Connection ...
0
votes
1answer
57 views

Json Output Play framework / Scala

I am using play framework with scala. I would like to have output of Json exactly like this { id: "node37", name: "3.7", data: {}, ...
1
vote
1answer
24 views

Deadbolt 2 in Scala ask if user has access to route

Making a menu in a scala template with some authorized links in them will look like this: <ul> <li><a href="@routes.Application.index()">Home</a></li> ...
0
votes
1answer
37 views

Inputting JsonObject to view Play framework / Scala

I am trying to take JsonObject as input to my project which i am using play framework with scala @(name: String,tracks :Iterator[String],Track_Json:JsObject) I guess i have to input it this way but ...
0
votes
1answer
60 views

Using implicit objects within classes

I am trying to write code to represent polynomials within Scala. I need this code to be type polymorphic, so I am using implicits to deal with different types. I have: case class Mono[T](degree: Int, ...
3
votes
1answer
52 views

Contruct a Json File in scala / play framework

i am using play framework with scala , i need to give an input which has to look like that : { id: "node37", name: "3.7", data: {}, ...
0
votes
1answer
66 views

Passing data from controller to view in scala / play framework [closed]

i am using play framework with scala . My problem is passing the data from controller to view. The error code is : too many arguments for method apply: (content: C)(implicit writeable: ...
0
votes
0answers
38 views

Intellij IDEA. Several SBT consoles

How I can run several SBT consoles in Intellij IDEA 12? I need it because I want to run 3 project modules, but when I run first it blocks SBT console until I kill process. I can achieve same result ...
3
votes
2answers
63 views

Scala : get mixin interfaces at runtime

I need to get all the interfaces at runtime from a given Class (all loaded in a ClassLoader). For instance, if a class has been declared this way : trait B trait C trait D class A extends B with ...
0
votes
1answer
37 views

Scala List Class error

i am trying to implement a class , what could be the error ? i want to implement a list of tracks as children. It has to look like this ; id: "node37", name: "3.7", ...
5
votes
2answers
101 views

Avoid name collision with Cake Pattern

I'm currently currently using the Cake Pattern to implement some optimization algorithms. I often hit name collision problems. For instance: trait Add[T] { this: Foo[T] => def constant: T def ...
1
vote
1answer
82 views

Intellij IDEA don't recognize Play 2.0 features

I checked out project from Github, then run sbt gen-idea and opened this project in IDEA. One of the project modules uses Play 2.0 Framework. But IDEA don't recognize symbols specific to Play!. ...
0
votes
1answer
64 views

SimpleGUIApplication in scala 2.10.1

I'm reading Programming in Scala and there is an example GUI program, which extends from class SimpleGUIApplication. But I don't see it in my scala library.I think it's removed from 2.10.1. What is ...
1
vote
1answer
42 views

Play! 2.1 / Why isn't my Jerkson dependency resolved?

Attempting to use the forked Jerkson library from https://github.com/randhindi/jerkson. Cloned a source dependency into the folder module and defined the following: object ApplicationBuild extends ...
0
votes
1answer
25 views

What do I have to add to my build.sbt in order to work with halbuilder?

I can't find how to use halbuilder in my spray project. The first step is to add the correct dependencies to my build.sbt file and then I can read the API documentation. Anyone out there has used ...
4
votes
1answer
140 views

Implicit conversion not working with type-safe builder pattern

I am using the Scala type-safe builder pattern for a simple rest request. This works great as a fluent api. sealed abstract class Method(name: String) case object GET extends Method("GET") case ...
0
votes
1answer
64 views

Convert polymorphic case classes to json and back

I am trying to use spray-json in scala to recognize the choice between Ec2Provider and OpenstackProvider when converting to Json and back. I would like to be able to give choices in "Provider", and if ...
6
votes
2answers
64 views

scala.tools.nsc.IMain within Play 2.1

I googled a lot and am totally stuck now. I know, that there are similar questions but please read to the end. I have tried all proposed solutions and none did work. I am trying to use the IMain ...
2
votes
1answer
36 views

Can't read Integer column using Anorm

When I try to run (from Play Framework): import play.api.db.DB import anorm._ import org.joda.time.DateTime import AnormExtensions._ // http://stackoverflow.com/a/11975107/11236 import ...
2
votes
1answer
132 views

Standard lib or Akka for Scala.2.10.1?

I am going to use Futures and Promises from scala.concurrent package in Scala 2.10.1. Should I use Akka instead ?
1
vote
1answer
81 views

Import works, but does not import everything in the package?

I'm trying to use dispatch with a 3rd party website that has an OAuth authentication, but I'm having trouble importing things from dispatch. Consumer api it is clearly there in the library, but for ...
0
votes
1answer
62 views

What is the correct way to configure actors in Play 2.x?

I noticed a slight difference between the documentation for 2.1 and 2.0: 2.0 akka.default-dispatcher.core-pool-size-max = 64 akka.debug.receive = on 2.1 ...
0
votes
1answer
24 views

How to install sbt without gcj-4.5-jre in Ubuntu?

When I am trying to install sbt in Ubuntu as it is suggested here: wget http://apt.typesafe.com/repo-deb-build-0002.deb sudo dpkg -i repo-deb-build-0002.deb sudo apt-get update sudo apt-get install ...
1
vote
1answer
53 views

Scala testing mocking implicit parameters?

I'm having a bit of a tough time trying to understand how to write tests in Scala when implicit parameters are involved. I have the following (short version) of my code and test: Implementation ...
1
vote
2answers
94 views

Getting the elements in a 2D vector (matrix)

I am searching a vector of vectors for a specific int. def searchVectors(i: Int, vectors: Vector[Vector[Int]]) = { val x = vectors.indexWhere(_.indexWhere(_ == i)) val y = ...
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
51 views

Using pattern matching to return a function

I am trying to write a function that returns a function based on the input parameter. def myFunction(x: Int): x => Boolean { x => if (x < 7) false if (x % 2 == 0) false else ...
2
votes
1answer
29 views

Converting functions from type T to type U>:T

I have a question about creating a contravariant set represented by a function T=>Boolean that returns true if something is in the set, false otherwise. It looks like this: class BoolSet[-T](f: ...
2
votes
1answer
53 views

Scala REPL “error: value > is not a member of type parameter T”

This is my file trait Set[T] { def contains(x: T): Boolean def incl(x: T): Set[T] def union(that: Set[T]): Set[T] } class Empty[T] extends Set[T] { override def toString = "." ...
3
votes
2answers
82 views

A case class as a “wrapper” class for a collection. What about map/foldLeft/

What I try to do is to come up with a case class which I can use in pattern matching which has exactly one field, e.g. an immutable set. Furthermore, I would like to make use of functions like map, ...
0
votes
1answer
54 views

Scala Play - How to convert a list of Scala Strings into an Array of javascript Strings (avoiding the &quot; issue)?

When converting a Scala list of Strings into a javascript Array of Strings with the Play template engine, you probably start with something like this ... var strArray = ...
0
votes
2answers
60 views

How to build a jar file out of github project in sbt to be used in a scala program

I am trying to use scala to access Amazon's DynamoDB and found this great package on github https://github.com/piotrga/async-dynamo so I downloaded the code as a zip file , unzipped it and then did ...
1
vote
0answers
60 views

How to properly combine NetBeans, Scala, and Maven? [closed]

I'm trying to create a Maven project in NetBeans, and have NetBeans recognize it as a Scala project and use the Scala plugins, but can't figure this out. I can combine Scala and Maven without ...
3
votes
3answers
293 views

How to capture inner matched value in indexWhere vector expression?

Using a Vector[Vector[Int]] reference v, and the expression to find a given number num: val posX = v.indexWhere(_.indexOf(num) > -1) Is there any way to capture the value of _.indexOf(num) to ...
2
votes
2answers
105 views

Why this two code blocks are equivalent for Option class?

In documentation of Option class written that following two examples are equivalent: val name: Option[String] = request getParameter "name" val upper = name map { _.trim } filter { _.length != 0 } ...
3
votes
2answers
129 views

How to express [42 | x == y] with for comprehensions?

I have some pieces of code where I generate multiple lists (via for comprehensions) and then concatenate them. There are some one-element lists where this doesn't work though. In Haskell I would do ...
0
votes
1answer
54 views

Expose object JSON straight from database - Writing a Format[anorm.Pk[Long]]

Hello all :) I'm about 16 hours new to Scala and Play!Framework (version 2.1). I'm following this Play!2.0 tutorial with Anorm, which uses Jerkson. From what I understand, in 2.1 you can do that out ...
6
votes
1answer
150 views

Scala can't deal with huge objects?

I have a syntactically correct Scala source file holding a huge data structure. The code looks like this: object ChiSquareAlpha { val ChiSquareToAlphaIndexTable = Map( 1 -> ...
1
vote
2answers
66 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 ...
0
votes
2answers
69 views

How scala inferred types in this code examples?

Hi I am new to Scala and programming in general. I took a Scala course on coursera one of the assignments was to create functions that take sets as parameters and return another set which is a ...
0
votes
2answers
39 views

Why does this wildcarded function tells me it has the wrong number of parameters?

The offending code was: <console>:47: error: wrong number of parameters; expected = 2 terms.foldLeft(r.unitA)(r.add(_, _.eval(x))) I solved my problem by writing: ...

1 2 3 4 5 317