4
votes
1answer
32 views
How to write “asInstanceOfOption” in Scala
Is it possible to write an "asInstanceOfOption" method that would do what is intended by the following (bogus) code?
def asInstanceOfOption[T](o: Any): Option[T] =
if (o.isInst …
0
votes
0answers
14 views
Why is flatten declared on GenericTraversableTemplate and not TraversableLike?
The signature of TraversableLike.flatMap is as follows:
def flatMap[B, Th](f : (A) => Traversable[B])(implicit bf : CanBuildFrom[Repr, B, Th]) : Th
The signature of GenericTr …
0
votes
1answer
18 views
parsing recursive structures in scala
I'm trying to contruct a parser in scala which can parse simple SQL-like strings. I've got the basics working and can parse something like:
select id from users where name = "pete …
1
vote
1answer
39 views
Why doesn’t this match?
Hello.
I tried to implement 'concat' as same as Haskell's 'concat' in Scala.
But I failed to do.
$ scala
Welcome to Scala version 2.7.7.final (Java HotSpot(TM) Client VM, Java 1 …
0
votes
1answer
41 views
Scala Parser Token Delimiter Problem
I'm trying to define a grammar for the commands below.
object ParserWorkshop {
def main(args: Array[String]) = {
ChoiceParser("todo link todo to database")
Cho …
2
votes
1answer
38 views
Using generic methods with implicit type conversion
This question came up when this question about the identity function was discussed.
The problem is that you want to flatMap a List[Option[T]] to a List[T] :
val l = List(Some("He …
3
votes
3answers
89 views
Is there a scala identity function?
If I have something like a List[Option[A]] and I want to convert this into a List[A], the standard way is to use flatMap:
scala> val l = List(Some("Hello"), None, Some("World") …
2
votes
3answers
41 views
garbage collecting scala actors
Scenario: I have this code:
class MyActor extends Actor {
def act() {
react {
case Message() => println("hi")
}
}
}
def meth() {
val a = new MyActor
…
0
votes
1answer
47 views
Can someone explain this article about enforcing race safety in Scala.
http://www.infoq.com/news/2009/07/scala-actors-race-safe-system
5
votes
1answer
59 views
Using Java Lib with Scala Reserved Words
Hi,
I'm using an external library written in java (selenium). One of the function calls has signature type(String,String) , and I keep getting compiler errors when trying …
3
votes
3answers
71 views
When should I use Scala’s Array instead of one of the other collections?
This is more a question of style and preference but here goes: when should I use scala.Array? I use List all the time and occasionally run into Seq, Map and the like, but I've neve …
1
vote
5answers
69 views
Idiom for Scala’s Option when doing equality tests
What's an easier/cleaner way to do this?
val o = Some(4)
if(o.isDefined) {o.get == 4} else { false }
I've tried
o.getOrElse(null) == 4
but that feels wrong, since in the isEm …
3
votes
5answers
85 views
What is the difference between a var and val definition in Scala?
What is the difference between a var and val definition in Scala and why does the language need both? Why would you choose a val over a var and vice versa?
2
votes
4answers
85 views
Scala AST in Scala
Is there a Scala library that parses Scala and creates an Abstract Syntax Tree (AST)?
Ideally I am interested in a Scala library. Plan B would be a Java library.
(I know I could …
1
vote
3answers
81 views
Scala Newb Question - about scoping and variables
Hi,
I'm parsing XML, and keep finding myself writing code like:
val xml = <outertag>
<dog>val1</dog>
<cat>val2</cat>
</outertag>
var cat = "" …
