Description Usage Arguments Details Value See Also Examples
Allows modification access to the back of a deque.
1 |
d |
rdeque to modify the back element of. |
... |
additional arguments to be passed to or from methods. |
value |
value to assign to the back data element. |
Runs in O(1) worst case time. Throws an error if the deque is empty.
modified rdeque.
peek_back.rdeque
for accessing the back element.
1 2 3 4 5 6 7 8 | d <- rdeque()
d <- insert_front(d, data.frame(a = 1, b = 1))
d <- insert_front(d, data.frame(a = 1, b = 1))
peek_back(d)$a <- 100
print(d)
peek_back(d) <- data.frame(a = 100, b = 100)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.