0
votes
2answers
29 views
Extend scala class that extends ordered
I'm having trouble extending a base class that extends Ordered[Base]. My derived class can't extend Ordered[Derived] so can't be used as a key in a TreeMap. If I create a TreeMap[Base] and then just …
3
votes
1answer
36 views
scala: tracing implicits selection and other code magics
When trying to figure how a library works, implicit conversions are confusing. For example, looking at an expression like 'val foo: Foo = 1', what converts 1 to Foo?
Is it possible to instruct the …
3
votes
2answers
57 views
Thread monitoring for scala actors
Is there a way to monitor how many threads are actually alive and running my scala actors ?
3
votes
1answer
118 views
Do I have to create a new object to mix in a Scala trait?
In Scala 2.8, calling groupBy() on a collection returns a Map where the values are collections, but I want a MultiMap. What's the easiest way to do the conversion? Can I avoid creating a new …
2
votes
4answers
155 views
What are the differences and similarities of Scala and Haskell type systems?
How to explain Scala's type system to a Haskell expert?
What examples show Scala's advantages?
How to explain Haskell's type system to an advanced Scala practitioner?
What can be done in Haskell that …
3
votes
4answers
53 views
Accessing Scala Parser regular expression match data
I wondering if it's possible to get the MatchData generated from the matching regular expression in the grammar below.
object DateParser extends JavaTokenParsers {
....
val dateLiteral = …
1
vote
7answers
228 views
It’s a good idea use ruby for socket programming?
My language of choice is Ruby, but I know because of twitter that Ruby can't handle a lot of requests. It is a good idea using it for socket development? or Should I use a functional language like …
9
votes
4answers
494 views
Is there any game engine in Scala?
I wonder if there are any game engine written in Scala or easily accesible from Scala?
3
votes
1answer
55 views
Scala Case class matching compile error with aliased inner types?
How do I use case class matching with aliased types? This works when I pull CB etc out of Container.
class DoStuff[TKey](
val c : Container[TKey]#CB
)
{
type CB = Container[TKey]#CB
type C1 = …
4
votes
4answers
211 views
When to use the equals sign in a Scala method declaration?
With equals sign:
object HelloWorld {
def main(args: Array[String]) = {
println("Hello!")
}
}
Without equals sign:
object HelloWorld {
def main(args: Array[String]) {
…
4
votes
1answer
78 views
A list of scala “global” functions?
There are some "global" functions in scala, for example:
print
println
classOf
format
The first 2 are actually Console's singleton methods, the last comes from java.lang.String.format.
I believe …
4
votes
3answers
123 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"))
l: …
2
votes
2answers
79 views
Type inference: Using generic methods with implicit type conversion
The problem is that you want to flatMap a List[Option[T]] to a List[T] :
val l = List(Some("Hello"), None, Some("World"))
to get:
List(Hello, World)
but there is no nice solution:
l flatMap( o …
1
vote
3answers
55 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 = "peter" and age = 30 …
2
votes
1answer
71 views
pattern matching on a series of values in scala
I'm a Scala beginner and this piece of code makes me struggle.
Is there a way to do pattern matching to make sure everything i pass to Data is of the correct type? As you can see i have quite strange …
