rawtoast
val eitherOptThing: Either<Int, Option<Int>> = Either.right(Option(1)) val transofmers: OptionT<Kind<ForEither, Int>, Int> = OptionT(eitherOptThing) val result = transofmers.semiflatMap...