0
votes
2answers
43 views
Scala: How to know if a class is an enumeration; isInstanceOf[Enumeration] doesn’t work
I'm in scala writing a serializer that saves an object (or Model) to the database (for app engine), and I need to treat some fields as special cases. For example, if the field is o …
3
votes
2answers
77 views
Java/Scala BigInteger Pasting
I have a problem with the Java BigInteger class: I can't paste a large value into BigInteger. For example, let's say I want to assign a BigInteger to this number:
265252859812191 …
0
votes
2answers
45 views
Scala Regex Multiple Block Capturing
Hi there
I'm trying to capture parts of a multi-lined string with a regex in Scala.
The input is of the form:
val input = """some text
|begin {
| con …
1
vote
2answers
86 views
Is there a safe way in Scala to transpose a List of unequal-length Lists?
Given the following List:
val l = List(List(1, 2, 3), List(4, 5), List(6, 7, 8))
If I try to transpose it, Scala will throw the following error:
scala> List.transpose(l)
jav …
2
votes
2answers
61 views
What is scala -i command-line option supposed to do ?
I'm finding the scala '-i' command line option quite useful for running some scala code and then dumping me into an interactive shell so I can prod/inspect the things it defined.
…
3
votes
3answers
103 views
Does Scala support tail recursion optimization?
Does Scala support tail recursion optimization?
1
vote
0answers
36 views
Problem with Scala Dispatch Databinder library
I am using the Dispatch Databinder library for Http in Scala.
I have this method.
def testCheckPage(url:String):String = {
try {
var http = new Http
var request = new …
0
votes
2answers
99 views
Why are my Scala types not matching?
I have the following variable series:
var series: List[FlotSerie] = List(
new FlotSerie() {
override val label = Full("Min")
},
new FlotSerie() {
override val label …
2
votes
3answers
286 views
Does Scala have an equivalent to C# yield?
I'm new to Scala, and from what I understand yield in Scala is not like yield in C#, it is more like select.
Does Scala have something similar to C#'s yield? C#'s yield is great b …
1
vote
3answers
110 views
How the Scala script that reads 5G log file from network drive should be modified in order to read last x lines (like ‘tail’ in Unix)?
How the Scala script that reads 5G log file from network drive should be modified in order to read last x lines (like 'tail' in Unix)?
::#!
@echo off
call scala %0 %*
goto :eof
:: …
1
vote
5answers
116 views
Selection sort in functional Scala
I'm making my way through "Programming in Scala" and wrote a quick implementation of the selection sort algorithm. However, since I'm still a bit green in functional programming, I …
3
votes
1answer
155 views
Unimporting in Scala
I heard recently some advice to "unimport an implicit conversion from Predef" - I presume that this means it is possible to unimport unwanted classes too:
import java.awt._
unimpo …
6
votes
2answers
144 views
scala: ‘def foo = {1}’ vs ‘def foo {1}’
what is going on in each of these forms of defining foo?:
scala> def foo = {1}
foo: Int
scala> foo
res2: Int = 1
But:
scala> def foo {1}
foo: Unit
scala> foo
sca …
2
votes
4answers
119 views
Can I zip more than two lists together in Scala?
Given the following Scala List:
val l = List(List("a1", "b1", "c1"), List("a2", "b2", "c2"), List("a3", "b3", "c3"))
How can I get:
List(("a1", "a2", "a3"), ("b1", "b2", "b3"), …
1
vote
3answers
79 views
Issues with maps and their entries in Scala
I have a recursive function that takes a Map as single parameter. It then adds new entries to that Map and calls itself with this larger Map. Please ignore the return values for no …
