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

LiftFilterM #37

Open
wheaties opened this issue Jan 10, 2016 · 0 comments
Open

LiftFilterM #37

wheaties opened this issue Jan 10, 2016 · 0 comments

Comments

@wheaties
Copy link
Owner

We've got filter, all we're missing on the "filter" front is "filterM". See filterM for more details. Essentially the syntax extension will look like

implicit class LiftFilterMOps[F[_], A](fa: F[A]){
  def liftFilterM[M[_], B](f: B => M[Boolean])(implicit lift: LiftFilterM[M, F[A], B => M[Boolean]]): lift.Out = lift(fa, f)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant