powered by
Remove an element from the back of the container by reference.
pop_back(x)
Invisibly returns NULL.
NULL
A CppVector, CppDeque, or CppList object.
back, emplace_back, pop, pop_front, push_back.
l <- cpp_list(4:6) l # 4 5 6 pop_back(l) l # 4 5
Run the code above in your browser using DataLab