In Ruby I can write this:
case n
when 0...5 then "less than five"
when 5...10 then "less than ten"
else "a lot"
end
How do I do this in Scala?
Edit: preferably I'd like to do it more elegantly than using if.
|
In Ruby I can write this:
How do I do this in Scala? Edit: preferably I'd like to do it more elegantly than using
| ||||
feedback
|
|
Inside pattern match it can be expressed with guards:
| ||||
|
feedback
|
Note that Contains instances should be named with initial caps. If you don't, you'll need to give the name in back-quotes (difficult here, unless there's an escape I don't know) | ||||
|
feedback
|
|
For Ranges of equal size, you can do it with old-school math:
Yes, I know: "Don't divide without neccessity!" But: Divide et impera! | |||
|
feedback
|