| 157 | } |
| 158 | |
| 159 | std::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 | |
| 168 | std::vector<std::string> IFaceTable::GetAllPropertyNames() const { |
| 169 | std::vector<std::string> kws; |