Skip to content
New issue

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

Add OptionT extension methods #231

Closed
kevin-lee opened this issue Jul 19, 2021 · 0 comments · Fixed by #233
Closed

Add OptionT extension methods #231

kevin-lee opened this issue Jul 19, 2021 · 0 comments · Fixed by #233
Assignees
Labels
task Task v1 Effectie v1
Milestone

Comments

@kevin-lee
Copy link
Owner

Task

Summary

Add OptionT extension methods.

Project Details

Version: 1.11.0

Description

val foa: F[Option[A]] = ???
foa.optionT // OptionT[F, A]

val oa: Option[A] = ???
oa.optionT[F] // Option[F, A]

val fa: F[A] = ???
fa.someT OptionT[F, A] // OptionT[F, A]

val a = ???
a.someTF[F] // OptionT[F, A]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
task Task v1 Effectie v1
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant