Skip to content

1.0.15

Compare
Choose a tag to compare
@jph00 jph00 released this 26 Sep 14:04
· 1191 commits to main since this release

1.0.15

New Features

  • add L.map_filter and L.map_first (#97)
    • 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))