pop_front | R Documentation |
Remove an element from the front of the container by reference.
pop_front(x)
x |
A CppDeque, CppForwardList, or CppList object. |
Invisibly returns NULL
.
emplace_front, front, pop, pop_back, push_front.
d <- cpp_deque(4:6)
d
# 4 5 6
pop_front(d)
d
# 5 6
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.