The code for kotlin is essentially the same: ``` v...
# arrow
r
The code for kotlin is essentially the same:
Copy code
val eitherOptThing: Either<Int, Option<Int>> = Either.right(Option(1))
val transofmers: OptionT<Kind<ForEither, Int>, Int> = OptionT(eitherOptThing)
val result = transofmers.semiflatMap...