| 924 | } |
| 925 | |
| 926 | DataType GraphModule::typeFromName(boost::string_view name) { |
| 927 | auto func = structFromName(name); |
| 928 | |
| 929 | if (func == nullptr) { return {}; } |
| 930 | |
| 931 | return func->dataType(); |
| 932 | } |
| 933 | |
| 934 | std::vector<std::string> GraphModule::nodeTypeNames() const { |
| 935 | std::vector<std::string> ret; |