2020-05-18 12:50:04 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-immutables: updated to 0.14 v0.14: Allow None to be used as key in pure-Python implementation. |
2020-05-14 08:04:47 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-immutables: updated to 0.13 v0.13: Bugfixes Various improvements w.r.t. type annotations & typing Fix pure-Python implementation to accept keyword argument |
2020-05-13 16:50:34 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-immutables: updated to 0.12 v0.12: Bug Fixes Fix the mutation API to maintain elements count correctly |
2020-01-08 21:01:40 by Adam Ciarcinski | Files touched by this commit (4) |
Log message: py-immutables: added version 0.11 An immutable mapping type for Python. The underlying datastructure is a Hash Array Mapped Trie (HAMT) used in Clojure, Scala, Haskell, and other functional languages. This implementation is used in CPython 3.7 in the contextvars module (see PEP 550 and PEP 567 for more details). Immutable mappings based on HAMT have O(log N) performance for both set() and get() operations, which is essentially O(1) for relatively small mappings. |