This initial release re-implements Python's `collections.deque` with O(1) item access. Currently, it covers only a subset of Python's deque functionalities. Notably, it does not support the `maxlen` argument. However, all the implemented functionalities are either equivalent to Python's deque or exhibit slightly better performance in certain cases.