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