According to the Scala documentation for the method Range.end, it returns "the exclusive end of the range." So why does it return the same value for both the to and the until notations? For example:
Welcome to Scala version 2.9.2 (Java HotSpot(TM) Server VM, Java 1.7.0).
Type in expressions to have them evaluated.
Type :help for more information.
scala> (1 to 10).end
res0: Int = 10
scala> (1 until 10).end
res1: Int = 10
Shouldn't res0 == 11?
RichInt.todoesn't result in a mereRange, it results in anInclusive. – oldrinb Sep 15 '12 at 16:42endbefore, but if you want the last element, uselast. Scala's documentation sometimes isn't the best. – Luigi Plinge Sep 15 '12 at 16:55