Description Usage Arguments Details Value See Also Examples
View source: R/length.rdeque.R
Returns the number of elements in an rdeque.
1 2 | ## S3 method for class 'rdeque'
length(x)
|
x |
rdeque to get the length of. |
Runs in O(1) time, as this information is stored seperately and updated on every insert/remove.
a vector of length 1 with the number of elements.
empty
for checking whether an rdeque is empty.
1 2 3 4 5 | d <- rdeque()
d <- insert_front(d, "a")
print(length(d)) # 1
d <- insert_back(d, "b")
print(length(d)) # 2
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.