Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
8answers
7k views

Case classes vs Enumerations in Scala

I was wondering if there are any best practice guidelines on when to use case classes vs extending Enumeration in Scala. They seem to offer some of the same benefits.
29
votes
2answers
3k views

Cleaner way to update nested structures

Say I have got following two case classes: case class Address(street: String, city: String, state: String, zipCode: Int) case class Person(firstName: String, lastName: String, address: Address) and ...
12
votes
2answers
2k views

Overload constructor for Scala's Case Classes?

In Scala 2.8 is there a way to overload constructors of a case class? If yes, please put a snippet to explain, if not, please explain why?
11
votes
2answers
1k views

How do I “get” a Scala case object from Java?

I created a hierarchy of case objects in Scala that looks like the following: package my.awesome.package sealed abstract class PresetShapeType(val displayName: String) case object ...
9
votes
2answers
168 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
2answers
121 views

Scala: order of definition for companion object vs case class

In Scala 2.9.1 I get the following behavior: class Foo { case class X() object X // this compiles def bar() { object Y // this compiles case class Y() ...
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
4answers
2k views

What are the disadvantages to declaring Scala case classes?

If you're writing code that's using lots of beautiful, immutable data structures, case classes appear to be a godsend, giving you all of the following for free with just one keyword: Everything ...
9
votes
2answers
882 views

Why were the case classes without a parameter list deprecated?

Why were the case classes without a parameter list deprecated from Scala? And why does compiler suggest to use () as parameter list instead? EDIT : Someone please answer my second question... :|
9
votes
3answers
1k views

Case class to map in Scala

Does anyone know if there is a nice way I can convert a Scala case class instance, e.g. case class MyClass(param1: String, param2: String) val x = MyClass("hello", "world") Into a mapping of some ...
9
votes
1answer
608 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 ...
8
votes
3answers
276 views

Case classes and Proxy behaviour in Scala 2.9

On migrating our code to Scala 2.9 we've found large swathes of it that didn't work and failed silently. We tracked it down to case classes that extend Proxy not being equal. In our code we don't ...
6
votes
2answers
226 views

In Scala, is there an easy way to convert a case class into a tuple?

Is there an easy way to convert a case class into a tuple? I can, of course, easily write boilerplate code to do this, but I mean without the boilerplate. What I'm really after is a way to easily ...
6
votes
2answers
194 views

scala case class equals (==) not working as expected

I must be missing something silly here. I have this: case class Color(val rgb:Int) { private val c = rgb - 0xff000000 val r = (c & 0xff0000) >> 16 val g = (c & 0x00ff00) ...
6
votes
1answer
177 views

Difference between home made extractor and case class extractor

According to the scala specification, the extractor built by case classes is the following (scala specification §5.3.2): def unapply[tps](x: c[tps]) = if (x eq null) scala.None else ...
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
3answers
480 views

hashCode in case classes in Scala

I've read that Scala'a case class construct automatically generates a fitting equals and hashCode implementation. What does exactly the generated code look like?
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
1answer
117 views

Automatically Hash Consed Case Classes

I'm looking for a way to have classes that behave just like case classes, but that are automatically hash consed. One way to achieve this for integer lists would be: import ...
5
votes
1answer
144 views

Efficiently serializing case classes

For a library I'm working on, I need to provide an efficient, convenient and typesafe method of serializing scala classes. The ideal would be if a user can create a case class, and as long as all the ...
5
votes
1answer
227 views

In Scala, how can I programmatically determine the name of the fields of a case class?

In Scala, suppose I have a case class like this: case class Sample(myInt: Int, myString: String) Is there a way for me to obtain a Seq[(String, Class[_])], or better yet, Seq[(String, Manifest)], ...
5
votes
4answers
439 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 ...
5
votes
1answer
212 views

Does `productElement(i)` on a case-class use reflection?

Considering the following Scala snippet: case class Foo(v1: String, v2: Int, v3: Any) def inspect(p: Product) = (0 until p.productArity).foreach(i => println(p.productElement(i))) ...
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 ...
4
votes
2answers
181 views

Scala case classes and lists

I'm completely new to Scala. Right now I'm attempting port a parser I wrote in Standard ML to Scala and having an issue with the following code: abstract class Token case class Zero extends Token ...
4
votes
3answers
346 views

rely on methods of case class in trait

Is there a way to rely on methods defined in case class in a trait? E.g., copy: the following doesn't work. I'm not sure why, though. trait K[T <: K[T]] { val x: String val y: String def m: ...
4
votes
2answers
1k views

Why are case objects serializable and case classes not?

I am playing with this example http://scala.sygneca.com/code/remoteactors to learn how remote actors work in Scala (2.8.0). In particular I slightly modified how the messages send by the actors are ...
4
votes
1answer
282 views

Bidirectional reference with case classes

Is it possible to implement a bi-directional tree in a case class. This seems like it should be easy, but I'm getting stumped case class Node(name:String, parent:Option[Node], children:List[Node]) ...
3
votes
2answers
377 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
4answers
263 views

Is it correct to define all classes as cases in Scala just to have all their arguments made properties automatically?

I'm beginning Scala. Am I correct understanding that I should define a class as a case class if I'd like it's arguments to be exposed as properties? Does not it introduce any side effects?
3
votes
3answers
2k views

Reflection on a Scala case class

I'm trying to write a trait (in Scala 2.8) that can be mixed in to a case class, allowing its fields to be inspected at runtime, for a particular debugging purpose. I want to get them back in the ...
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?") ...
3
votes
2answers
184 views

Symbols or Case Classes for sending messages to Scala Actors?

In the Scala actor examples I have seen where a parameterless message is sent to an actor (such as this), case classes (or case objects) have been created and then used as messages. Symbols work just ...
2
votes
2answers
67 views

How do I pull apart Case Classes filled with Options in Scala

I'm very new to Scala and I'm still trying to get used to the syntax and style, so this is probably a very simple question. I'm working with a codebase where there are lots of case classes populated ...
2
votes
2answers
167 views

Product inheritance in case classes

I have some case classes that extend a common superclass and I'd like to access fields from the superclass using productElement method (I've tryed to declare base class as a case class but I get a ...
2
votes
3answers
369 views

Efficient map with case class as a key in Scala?

A following C code uses enum and array as efficient "map" from enum to anything: enum Color { ColorRed, ColorGreen, ColorBlue, ColorSize}; void f() { int x[ColorSize]; x[ColorRed] = 12; ...
2
votes
2answers
167 views

Is constructor use allowed with case classes?

I have a case class (let's name it Stuff) that I want to be able to create anonymous subclasses of at run time by extending a trait (call it Marker). Here's a snippet of a REPL session that ...
2
votes
1answer
476 views

case class and traits

I want create a special calculator. I think that case class is a good idea for operations: sealed class Expr case class add(op1:Int, op2:Int) extends Expr case class sub(op1:Int, op2:Int) extends ...
2
votes
2answers
135 views

Naming case classes in Scala

I tend to have this redundant naming in case classes: abstract class MyTree case class MyTreeNode (...) case class MyTreeLeaf (...) Isn't it possible to define Node and Leaf inside of MyTree? What ...
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 ...
1
vote
4answers
49 views

Scala child case class param name conflict with parent case class param name

Let us assume we have the two following classes: abstract case class MyParent(param: Int) { // ... } case class MyChild(param: Int) extends MyParent(param: Int) { // ... ^^^^^ ...
1
vote
2answers
54 views

linking a map to a file with scala, to run a text based game

I'm taking a beginning programming class, and we're on to making text based games, more like read you're own adventures then actual games and I don't quite understand how to get the information form ...
1
vote
3answers
77 views

How should I extend a case class if a derived class is meant to have the same parameter and shouldn't override?

case class Message(xml : Node) { def toXML : Node = xml } case class ReqValidationMessage (xml : Node) extends Message(xml){ // ... } This causes a property naming conflict as Scala tries to ...
1
vote
1answer
150 views

Why does the Scala compiler say that copy is not a member of my case class?

First, this is in Scala 2.8, so it should be there! =) I'm working on Lift's Javascript objects and I want to have the following: case class JsVar(varName: String, andThen: String*) extends JsExp { ...
1
vote
2answers
254 views

Problem with bounded type parameterised case class and default args in Scala

Consider the following (tested with Scala 2.8.1 and 2.9.0): trait Animal class Dog extends Animal case class AnimalsList[A <: Animal](list:List[A] = List()) case class AnimalsMap[A <: ...
1
vote
2answers
703 views

Scala traits / cake pattern vs case classes

In my web application authorized user has at least 4 "facets": http session related data, persistent data, facebook data, runtime business data. I've decided to go with case class composition instead ...
1
vote
1answer
126 views

How to test arguments to a case class constructor?

I'd like to test the arguments to my case class constructor and throw an exception if they fail certain tests. The compiler complained when I tried to write my own apply method (Multiple 'apply' ...
1
vote
1answer
181 views

Implicit conversion to instantiate a sealed class

I have this inheritance sealed abstract class MyValue case class MyString(s:String) extends MyValue case class MyBoolean(b:Boolean) extends MyValue case class MyR(m1:MyValue, m2:MyValue) extends ...

1 2