diff --git a/Collections-module.md b/Collections-module.md new file mode 100644 index 0000000..de8fe6d --- /dev/null +++ b/Collections-module.md @@ -0,0 +1,15 @@ +[Official docs ](https://docs.python.org/3/library/collections.html) + +* [built-in](https://docs.micropython.org/en/latest/library/collections.html) + * deque (fast, very incomplete) + * namedtuple + * OrderedDict +* [micropython-lib](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/collections) + * [defaultdict](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/collections.defaultdict) + * [deque](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/collections.deque) (slow, more complete) +* Not implemented yet + * [ChainMap](https://docs.python.org/3/library/collections.html#collections.ChainMap) + * [Counter](https://docs.python.org/3/library/collections.html#collections.Counter) + * [UserDict](https://docs.python.org/3/library/collections.html#collections.UserDict) + * [UserList](https://docs.python.org/3/library/collections.html#collections.UserList) + * [UserString](https://docs.python.org/3/library/collections.html#collections.UserString) \ No newline at end of file