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

E.g if I want to write

1 -> 2 match {
  case 1 -> 2 => "matched"
  case _      => "not matched"
}
// error: not found: value ->

rather than the slightly less obvious

1 -> 2 match {
  case (1, 2) => "matched"
  case _      => "not matched"
}
share|improve this question

1 Answer

up vote 11 down vote accepted

I have just such a thing! I like it because I find it more readable in many cases.

object -> {
  def unapply[A, B](pair: (A, B)): Option[(A, B)] =
    Some(pair)
}

Now you can do:

scala> val a -> b = 1 -> 2
a: Int = 1
b: Int = 2
share|improve this answer
Cool, let's get it added to Predef! – Luigi Plinge Mar 15 '12 at 20:34
I have it in a file of many such extractors that I include in all of my projects, but Predef would be more convenient! (I have a couple file like this, including one that implicitly adds a bunch of methods to collections.) – dhg Mar 15 '12 at 20:43

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.