Skip to content

v0.7

Compare
Choose a tag to compare
@1st1 1st1 released this 20 Nov 20:32
· 80 commits to master since this release

New Features

  • All new APIs are covered in the README file.

  • Allow Map objects to be constructed from other mappings:
    Map(a=1), or Map([('a', 1)]), or Map(dict(a=1)).

  • Implement Map.update() method.

  • Implement Map.mutate() and MapMutation API.

  • Make Map objects pickleable.

  • Make Map.keys(), Map.values(), and Map.items() proper dict-view
    like objects.