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 L.map_filter and L.map_first #97

Closed
jph00 opened this issue Sep 26, 2020 · 0 comments
Closed

add L.map_filter and L.map_first #97

jph00 opened this issue Sep 26, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@jph00
Copy link
Contributor

jph00 commented Sep 26, 2020

These support some nice refactorings, like changing from this:

d = []
for c in cs:
    m = f(c)
    if not m: continue
    d.append(m.group(1))

to this:

d = cs.map_filter(f).map(Self.group(1))
@jph00 jph00 added the enhancement New feature or request label Sep 26, 2020
@jph00 jph00 closed this as completed in 6348612 Sep 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant