MCPcopy Create free account
hub / github.com/JeremyBYU/polylidar / ParseFunctionName

Method ParseFunctionName

src/Python/polylidar_pybind/docstring/docstring.cpp:203–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203void FunctionDoc::ParseFunctionName()
204{
205 size_t parenthesis_pos = pybind_doc_.find("(");
206 if (parenthesis_pos == std::string::npos)
207 {
208 return;
209 }
210 else
211 {
212 std::string name = pybind_doc_.substr(0, parenthesis_pos);
213 name_ = name;
214 }
215}
216
217void FunctionDoc::ParseSummary()
218{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected