Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
83
using StringPool = PoolT<char>;
Callers
1
InitializeWithArgs
Method · 0.80
Calls
3
rbegin
Method · 0.80
pop_back
Method · 0.80
empty
Method · 0.45
Tested by
no test coverage detected