vote up 5 vote down star
1

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?

flag

1  
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 at 11:11

2 Answers

vote up 12 vote down check

Guard using Range:

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

You can use guards:

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

Your Answer

Get an OpenID
or

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