MCPcopy Create free account
hub / github.com/Kitware/VTK / pop_last

Method pop_last

Utilities/PythonInterpreter/vtkPythonInterpreter.cxx:71–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69 }
70
71 T* pop_last()
72 {
73 if (this->Strings.empty())
74 {
75 return nullptr;
76 }
77 T* last = *this->Strings.rbegin();
78 this->Strings.pop_back();
79 return last;
80 }
81};
82
83using StringPool = PoolT<char>;

Callers 1

InitializeWithArgsMethod · 0.80

Calls 3

rbeginMethod · 0.80
pop_backMethod · 0.80
emptyMethod · 0.45

Tested by

no test coverage detected