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

I want to convert a range of Int into a a List or an Array. I have this code working in Scala 2.8:

var years: List[Int] = List()
val firstYear = 1990
val lastYear = 2011

firstYear.until(lastYear).foreach(
  e => years = years.:+(e)
)

I would like to know if there is another syntax possible, to avoid using foreach, I would like to have no loop in this part of code.

Thanks a lot!

Loic

share|improve this question

4 Answers

up vote 17 down vote accepted

You can use toList method:

scala> 1990 until 2011 toList
res2: List[Int] = List(1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010)

toArray method converts Range to array.

share|improve this answer
1  
Thanks! This works for Iterators too, which I was looking for – Dave Vogt Jul 23 '11 at 17:32

Range has a toList and a toArray method:

firstYear.until(lastYear).toList

firstYear.until(lastYear).toArray
share|improve this answer
Perfect, thanks a lot!! – Loic Apr 10 '11 at 18:45

And there's also this, in addition to the other answers:

List.range(firstYear, lastYear)
share|improve this answer

Simply:

(1990 until 2011).toList

but don't forget that until does not include the last number (stops at 2010). If you want 2011, use to:

(1990 to 2011).toList
share|improve this answer
Great, thanks very much for your answer! – Loic Apr 10 '11 at 18:45

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.