Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
242 views

Scala - can unapply return varargs?

Object L1 below works. I can "create" an L1 by passing in varargs, which is nice, but I would like to be able to assign to an L1 using the same syntax. Unfortunately, the way I've done it here ...
10
votes
3answers
268 views

How to pattern match a class with multiple argument lists?

Consider this class: class DateTime(year: Int, month: Int, day: Int)(hour: Int, minute: Int, second: Int) how would the unapply method look like, if I would like to match against something like: ...
9
votes
2answers
197 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: ...
8
votes
2answers
400 views

Can extractors be customized with parameters in the body of a case statement (or anywhere else that an extractor would be used)?

Basically, I would like to be able to build a custom extractor without having to store it in a variable prior to using it. This isn't a real example of how I would use it, it would more likely be ...
6
votes
1answer
207 views

Scala - implicit conversion with unapply

I'd like an extractor to implicitly convert its parameters, but it doesn't seem to work. Consider this very simple case: case class MyString(s: String) {} implicit def string2mystring(x: String): ...
5
votes
2answers
145 views

What is the difference between unapply and unapplySeq?

Why does Scala have both unapply and unapplySeq? What is the difference between the two? When should I prefer one over the other?
5
votes
4answers
153 views

Does Scala allow for this kind of extractor?

Let's say I have this collection: val a = Array(Array(1,2,3,4,5),Array(4,5),Array(5),Array(1,2,6,7,8)) Is there a way to define an extractor which would work in the following way: a.foreach(e ...
1
vote
1answer
557 views

Is it possible to use implicit conversions for parameters to extractors (unapply) in Scala?

I have created a class called CaseInsensitive which wraps a string (see http://stackoverflow.com/questions/1745910/implementing-a-string-class-that-does-case-insensitive-comparisions-in-scala). I've ...