The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
110 views

How do I write a scala extractor for a case class with default parameters?

I have the following case class with a default parameter and I'm wondering how I can write an unapply method so that I can just extract the first two parameters. I hope the code below is clear. case ...
2
votes
1answer
27 views

What are Maven plugin extractors?

In the configuration of a maven plugin's build, where you are specifying configuration for the "maven-plugin-plugin" there is something called an extractor. I also see it when building the plugin ...
6
votes
3answers
1k 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 ...
5
votes
1answer
780 views

Nested Scala matchers why Some(Some(1),1) can't match?

I've run into a minor problem whilst coding, it seems that nested matching doesn't work, it seems a strange limitation and I'm sure I'm just being foolish. An example of the behaviour follows: ...
7
votes
1answer
2k views

Scala: Understanding pattern matching on lists

I've been playing around with Extractors lately and was wondering how the List extractors work especially this: List(1, 2, 3) match { case x :: y :: z :: Nil => x + y + z // case ::(x, ::(y, ...
4
votes
1answer
239 views

scala 2.8.0.RC2 compiler problem on pattern matching statement?

Why does the following module not compile on Scala 2.8.RC[1,2]? object Test { import util.matching.Regex._ val pVoid = """\s*void\s*""".r val pVoidPtr = """\s*(const\s+)?void\s*\*\s*""".r val ...
7
votes
6answers
5k views

Scala: Pattern matching when one of two items meets some condition

I'm often writing code that compares two objects and produces a value based on whether they are the same, or different, based on how they are different. So I might write: val result = (v1,v2) match ...