What will be the result of applying fold to Option in the following code?
val number: Option[Int] = Some(3)
val noNumber: Option[Int] = None
val result1 = number.fold(1)(_ * 3)
val result2 = noNumber.fold(1)(_ * 3)

println(result1)
println(result2)
Explanation
fold will extract the value from the Option, or provide a default if the value is None.

Source: Scala Exercises: Options

Follow CodeGalaxy

Mobile Beta

Get it on Google Play
Send Feedback
Keep exploring
Scala quizzes
Cosmo
Sign Up Now
or Subscribe for future quizzes