Binds the given function across Right
.
Binds the given function across Right
.
The function to bind across Right
.
The given function is applied if this is a Right
.
The given function is applied if this is a Right
.
Right(12).map(x => "flower") // Result: Right("flower") Left(12).map(x => "flower") // Result: Left(12)
(Since version ) see corresponding Javadoc for more information.