MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / GetAllFunctionNames

Method GetAllFunctionNames

src/IFaceTable.cpp:159–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159std::vector<std::string> IFaceTable::GetAllFunctionNames() const {
160 std::vector<std::string> kws;
161
162 kws.reserve(functions.size());
163 std::transform(functions.begin(), functions.end(), std::back_inserter(kws), [](const IFaceFunction &iff) { return iff.name; });
164
165 return kws;
166}
167
168std::vector<std::string> IFaceTable::GetAllPropertyNames() const {
169 std::vector<std::string> kws;

Callers

nothing calls this directly

Calls 2

endMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected