Answers for "scala loop"

1

how loop in scala

for ((name, count) <- names.zipWithIndex) {
    println(s"$count is $name")
}
Posted by: Guest on March-06-2020
0

how loop in scala

for (i <- 1 to 3) println(i)
Posted by: Guest on March-06-2020
0

how loop in scala

for {
    i <- 1 to 10
    if i < 4
} println(i)
Posted by: Guest on March-06-2020
0

how loop in scala

for (i <- 1 to 10 if i < 4) println(i)
Posted by: Guest on March-06-2020
0

how loop in scala

val out = for (e <- names) yield e.capitalize
val out = names.map(_.capitalize)
Posted by: Guest on March-06-2020
0

how loop in scala

ratings.foreach {
    case(movie, rating) => println(s"key: $movie, value: $rating")
}

ratings.foreach(x => println(s"key: ${x._1}, value: ${x._2}"))
ratings.keys.foreach((movie) => println(movie))
ratings.keys.foreach(println)
ratings.values.foreach((rating) => println(rating))
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language