Tagged Questions

9
votes
2answers
169 views

Scala: Case class unapply vs a manual implementation and type erasure

I'm trying to understand what Scala does with Case Classes that makes them somehow immune to type erasure warnings. Let's say we have the following, simple class structure. It's basically an Either: ...
9
votes
3answers
233 views

Case classes, pattern matching and curried constructors in Scala

They don't seem to mix that well: abstract class A case class B (var a: Int)(var b: String) extends A case class C extends A The following will not work: B(1)("1") match { case B(a)(b) => ...
9
votes
1answer
609 views

How is this case class match pattern working?

I've just seen this case class in the Scala actors package: case class ! [a](ch: Channel[a], msg: a) And in the JavaDoc it describes usage in the following form: receive { case Chan1 ! msg1 ...
6
votes
2answers
265 views

Using Scala Case Classes as De-facto Maps

This is more a design question than anything else... I really like Scala's case classes and use them often. However, I find that I'm often wrapping in my parameters in Options (or rather, Lift's ...
6
votes
3answers
276 views

Replacing case class inheritance with extractors preserving exhaustiveness checks in Scala

I have a simple class hierarchy that represents a graph-like structure with several distinct types of vertexes implemented using case classes: sealed trait Node sealed abstract case class Vertex ...
6
votes
1answer
228 views

Matching case classes in scala: ~(a,b) match{case a~b=>…}

I have a case class case class ~[a,b](_1:a, _2:b) When I want to do pattetn matching new ~("a", 25) match{ case "a" ~ 25 => } I can use it this way because "a" ~ 25 and ~("a", 25) are ...
5
votes
4answers
441 views

How to override apply in a case class companion

So here's the situation. I want to define a case class like so: case class A(val s: String) and I want to define an object to ensure that when I create instances of the class, the value for 's' is ...
4
votes
2answers
192 views

Scala: Mix traits and case class in pattern match

I want to match on some case classes. If I don't know them, I want to match on a specified trait the classes have to extend. This looks like trait Event //root trait trait Status extends Event ...
4
votes
2answers
117 views

Does the order of alternatives in a Scala match expression matter in terms of performance?

In particular with respect to pattern matching and case classes. Consider the following: abstract class Expr case class Var(name: String) extends Expr case class Number(num: Double) extends Expr case ...
3
votes
2answers
378 views

Pattern matching on nested types in Scala

I am trying to implement something that is effectively an enumeration in Scala. I would like to do that using case classes so that the compiler is able to detect any non-exhaustive pattern matches. ...
3
votes
1answer
295 views

Matching sub-classes of case classes in Scala

Why does this fail to compile (or work?): case class A(x: Int) class B extends A(5) (new B) match { case A(_) => println("found A") case _ => println("something else happened?") ...
2
votes
3answers
1k views

Scala wont pattern match with java.lang.String and Case Class

Hello fellow Scala Programmers I have been working with Scala for some month now, however I have a problem with some properly basic stuff, I am hoping you will help my out with it. case class ...
0
votes
1answer
202 views

scala lift json: pattern match on unknown data?

I have some strange json that I cannot change, and I wish to parse it using the JsonParsen in lift. A typical json is like: {"name":"xxx", "data":{ "data_123456":{"id":"Hello"}, ...