Is it possible to match a range of values in Scala?

For example:

val t = 5
val m = t match {
    0 until 10 => true
    _ => false
}

m would be true if t was between 0 and 10, but false otherwise. This little bit doesn't work of course, but is there any way to achieve something like it?

link|improve this question

73% accept rate
2  
Note that by writing "0 until 10" you mean 0, 1, 2, ..., 9 (including 0, excluding 10). If you want to include 10, use "0 to 10". – Jesper Aug 28 '09 at 11:11
See a related stackoverflow question: How can I pattern match on a range in Scala? – David James Sep 26 '11 at 1:35
The title asks for how to match a value of type Range against several possibilities, e.g. "Do I have (0..5) or (1..6)?" – Raphael Sep 26 '11 at 18:33
feedback

2 Answers

up vote 25 down vote accepted

Guard using Range:

val m = t match {
  case x if 0 until 10 contains x => true
  case _ => false
}
link|improve this answer
That's very clever! For some reason, I never thought of doing it that way... – Daniel Spiewak Aug 28 '09 at 14:12
feedback

You can use guards:

val m = t match {
    case x if (0 <= x && x < 10) => true
    case _ => false
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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