v0.7
New Features
-
All new APIs are covered in the README file.
-
Allow
Mapobjects to be constructed from other mappings:
Map(a=1), orMap([('a', 1)]), orMap(dict(a=1)). -
Implement
Map.update()method. -
Implement
Map.mutate()andMapMutationAPI. -
Make
Mapobjects pickleable. -
Make
Map.keys(),Map.values(), andMap.items()proper dict-view
like objects.