Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have a case class that represents personas, people on different social networks. Instances of that class are fully immutable, and are held in immutable collections, to be eventually modified by an Akka actor.

Now, I have a case class with many fields, and I receive a message that says I must update one of the fields, something like this:

case class Persona(serviceName  : String,
                   serviceId    : String,
                   sentMessages : Set[String])

// Somewhere deep in an actor
val newPersona = Persona(existingPersona.serviceName,
                         existingPersona.serviceId,
                         existingPersona.sentMessages + newMessage)

Notice I have to specify all fields, even though only one changes. Is there a way to clone existingPersona and replace only one field, without specifying all the fields that don't change? Can I write that as a trait and use it for all my case classes?

If Persona was a Map-like instance, it would be easy to do.

share|improve this question

3 Answers

up vote 23 down vote accepted

case classcomes with a copy method that is dedicated exactly to this usage:

val newPersona = existingPersona.copy(sentMessages = 
                   existingPersona.sentMessages + newMessage)
share|improve this answer
Where is that documented? I can't find a reference to copy in the "obvious" spots, scala-lang.org/api/current/index.html for instance. – François Beausoleil Aug 30 '11 at 20:38
It's a features of the language, you can find it in the Scala specification: scala-lang.org/docu/files/ScalaReference.pdf §5.3.2. It's not in the API because it's not a part of the API ;) – Nicolas Aug 30 '11 at 20:44
@François Beausoleil: I will file a bug and fix it. – soc Aug 31 '11 at 9:19
@soc As it is note relative to a given class how do you plan to fix it? – Nicolas Aug 31 '11 at 9:52
I will have to look into it. Imho all classes should show all available methods with their default values. – soc Aug 31 '11 at 9:56
show 4 more comments

Since 2.8, Scala case classes have a copy method that takes advantage of named/default params to work its magic:

val newPersona =
  existingPersona.copy(sentMessages = existing.sentMessages + newMessage)

You can also create a method on Persona to simplify usage:

case class Persona(
  svcName  : String,
  svcId    : String,
  sentMsgs : Set[String]
) {
  def plusMsg(msg: String) = this.copy(sentMsgs = this.sentMsgs + msg)
}

then

val newPersona = existingPersona plusMsg newMsg
share|improve this answer
existingPersona.copy(sentMessages = existingPersona.sentMessages + newMessage)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.