Created Collections module (markdown)

master
Jim Mussared 2022-08-31 12:43:14 +10:00
rodzic 6b01e0d9de
commit 7dbb689929
1 zmienionych plików z 15 dodań i 0 usunięć

@ -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)