Learn R Programming

rstackdeque (version 1.1.1)

length.rdeque: Return the number of elements in an rdeque

Description

Returns the number of elements in an rdeque.

Usage

"length"(x)

Arguments

x
rdeque to get the length of.

Value

a vector of length 1 with the number of elements.

Details

Runs in $O(1)$ time, as this information is stored seperately and updated on every insert/remove.

See Also

empty for checking whether an rdeque is empty.

Examples

Run this code
d <- rdeque()
d <- insert_front(d, "a")
print(length(d))         # 1
d <- insert_back(d, "b")
print(length(d))         # 2

Run the code above in your browser using DataLab