In scala…… ``` val eitherOptThing: Either[Int, Op...
# arrow
r
In scala……
Copy code
val eitherOptThing: Either[Int, Option[Int]] = Right(Option(1))
  val transfomer = OptionT(eitherOptThing)
  val maybeResult = transfomer.semiflatMap(i => Right(s"sfsd{$i}"))
  val result: Either[Int, Option[String]] = maybeResult.value