Answers for "scala for 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 ratings = Map(
    "Lady in the Water"-> 3.0, 
    "Snakes on a Plane"-> 4.0, 
    "You, Me and Dupree"-> 3.5
)

for ((name,rating) <- ratings) println(s"Movie: $name, Rating: $rating")
Posted by: Guest on March-06-2020
0

how loop in scala

val nums = Seq(1,2,3)
val letters = Seq('a', 'b', 'c')
val res = for {
    n <- nums
    c <- letters
} yield (n, c)
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language