diff options
author | Yury Selivanov <yury@magic.io> | 2018-03-30 17:24:28 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-03-30 17:24:28 -0400 |
commit | 23398b3193b3389d1db478ef99383eca1d139e68 (patch) | |
tree | 5caa744413e00bf8911c335fafe8c5f5bbb78165 | |
parent | 3fc4b1e77056619e434ec324aed6545e26da2f28 (diff) | |
download | immutables-23398b3193b3389d1db478ef99383eca1d139e68.tar.gz immutables-23398b3193b3389d1db478ef99383eca1d139e68.zip |
Add README
-rw-r--r-- | README.rst | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..efa6f00 --- /dev/null +++ b/README.rst @@ -0,0 +1,15 @@ +immutables +========== + +An immutable mapping type for Python. + +The underlying datastructure is a Hash Array Mapped Trie (HAMT) +used in Clojure and other functional languages. The actual +implementation is copied from CPython 3.7 (see PEP 567 and +the contextvars module.) + + +License +======= + +Apache 2.0 |