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.
2 parents 1dc7b70 + 3550525 commit 3814ac6Copy full SHA for 3814ac6
docs/src/circ_deque.md
@@ -12,7 +12,7 @@ isempty(a) # test whether the deque is empty
12
empty!(a) # reset the deque
13
capacity(a) # return capacity
14
length(a) # get the number of elements currently in the deque
15
-push!(a, 10) # add an element to the front
+push!(a, 10) # add an element to the back
16
pop!(a) # remove an element from the back
17
pushfirst!(a, 20) # add an element to the front
18
popfirst!(a) # remove an element from the front
0 commit comments