-
Notifications
You must be signed in to change notification settings - Fork 608
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
feat: UX: Support deferreds in addition to lambdas in Array.map, Array.filter #8180
Closed
1 task done
Labels
feature
Features or general enhancements
Comments
Can you give this a try on |
Oh, nevermind, this is slightly different than what I originally thought. |
I like this feature request. The implementation should be about checking for Implementation suggestion: if isinstance(predicate, Deferred):
body = predicate.resolve(parameter.to_expr())
else:
body = predicate(parameter.to_expr()) |
NickCrews
added a commit
to NickCrews/ibis
that referenced
this issue
Feb 7, 2024
cpcloud
pushed a commit
to NickCrews/ibis
that referenced
this issue
Feb 8, 2024
cpcloud
pushed a commit
to NickCrews/ibis
that referenced
this issue
Feb 8, 2024
github-project-automation
bot
moved this from backlog
to done
in Ibis planning and roadmap
Feb 8, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem?
these lambdas are often really simple, and it would be shorter and cleaner to use Deferreds
Describe the solution you'd like
gmails = emails.filter(_.contains("@gmail.com"))
What version of ibis are you running?
main
What backend(s) are you using, if any?
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: