We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3bf242 commit 09e4873Copy full SHA for 09e4873
docs/src/deque.md
@@ -4,7 +4,8 @@ A Deque (short for Double-ended Queue) is an abstract data type that generalizes
4
a Queue for which elements can be added to or removed from both the front (head)
5
and the back (tail) in $O(1)$ time complexity.
6
7
-The type `Deque` implements the Double-ended Queue using a list of fixed-size blocks.
+The type `Deque` implements the Double-ended Queue as a list of fixed-size blocks
8
+using an [unrolled linked list](https://en.wikipedia.org/wiki/Unrolled_linked_list).
9
10
!!! note
11
Julia's `Vector` type also provides this interface, and thus can
0 commit comments