Learn R Programming

rstackdeque (version 1.1.1)

without_front: Return a version of an rdeque or rpqueue without the front element

Description

Return a version of an rdeque or rpqueue without the front element

Usage

without_front(x, ...)

Arguments

x
rdeque or rpqueue to remove elements from.
...
additional arguments to be passed to or from methods (ignored).

Value

a version of the rdeque or rpqueue with the front element removed.

Details

Simply returns a version of the given structure without the front element. The original is left alone.

References

Okasaki, Chris. Purely Functional Data Structures. Cambridge University Press, 1999.

Examples

Run this code
d <- rdeque()
d <- insert_front(d, "a")
d <- insert_front(d, "b")
d <- insert_back(d, "c")

d2 <- without_front(d)
print(d2)

d3 <- without_front(d2)
print(d3)

print(d)

Run the code above in your browser using DataLab