powered by
A constructor for a deque.
deque()
A deque is a double-ended queue. Insertion and deletion of objects can happen at either end.
The implementation is a head/tail doubly linked list.
# NOT RUN { library(dequer) d <- deque() d # } # NOT RUN { # }
Run the code above in your browser using DataLab