Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akhilvijayan05/e935800dd0190461b153d0dc2c7c4f6a to your computer and use it in GitHub Desktop.
Save akhilvijayan05/e935800dd0190461b153d0dc2c7c4f6a to your computer and use it in GitHub Desktop.
import cats.data.OptionT
val futureValue: Future[Option[Int]] = Future(Option(23))
val optionTValue: OptionT[Future, Int] = OptionT(futureValue)
val extractedFutureValue: Future[Option[Int]] = optionTValue.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment