In Scala, usi spesso un iteratore per eseguire un for
ciclo in ordine crescente come:
for(i <- 1 to 10){ code }
Come lo faresti in modo che passi da 10 a 1? Immagino che 10 to 1
dia un iteratore vuoto (come la solita matematica della gamma)?
Ho creato uno script in Scala che lo risolve chiamando reverse sull'iteratore, ma non è carino secondo me, è la strada da percorrere?
def nBeers(n:Int) = n match {
case 0 => ("No more bottles of beer on the wall, no more bottles of beer." +
"\nGo to the store and buy some more, " +
"99 bottles of beer on the wall.\n")
case _ => (n + " bottles of beer on the wall, " + n +
" bottles of beer.\n" +
"Take one down and pass it around, " +
(if((n-1)==0)
"no more"
else
(n-1)) +
" bottles of beer on the wall.\n")
}
for(b <- (0 to 99).reverse)
println(nBeers(b))
until
che puoi usare al posto dito
per escludere il punto finale destro dall'intervallo. L'endpoint di sinistra è sempre incluso.