We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extras-cats
innerFlatMapF
F[Option[A]]
[extras-cats] Add innerFlatMapF extension method to F[Option[A]]
Version: 0.35.0
0.35.0
val foa: F[Option[A]] = ... foa.innerFlatMapF(A => F[Option[B]]) // F[Option[B]]
val foa: IO[Option[Int]] = IO.pure(1) // IO[Option[Int]] = IO(Some(1)) foa.innerFlatMapF(a => IO.pure((a + 999).some)) // IO[Option[Int]] = IO(Some(1000))
The text was updated successfully, but these errors were encountered:
Close #352 - [extras-cats] Add innerFlatMapF extension method to F[Op…
4d918c9
…tion[A]]
Merge pull request #353 from Kevin-Lee/task/352/innerFlatMapF-FOptionA
7d7c72c
Close #352 - [`extras-cats`] Add `innerFlatMapF` extension method to `F[Option[A]]`
kevin-lee
Successfully merging a pull request may close this issue.
Task
Summary
[
extras-cats
] AddinnerFlatMapF
extension method toF[Option[A]]
Project Details
Version:
0.35.0
Description
The text was updated successfully, but these errors were encountered: