Contents
Syntax
The syntax for
name.pop_back() std::vector.pop_back(name)
@name.pop_back() @std::vector.pop_back(name)
Description
The
Note: For large scale projects you will find specifying the
f++ example
Example of
std::vector<double> v v.push_back(2.0, 5.3, 3.26) v.pop_back std::vector.pop_back(v) console(v.at(0))
n++ example
Example of
@std::vector<double> v @v.push_back(2.0, 5.3, 3.26) @v.pop_back @std::vector.pop_back(v) @console(v.at(0))