| 36 | } |
| 37 | |
| 38 | NodeInstance* GraphFunction::nodeByID(const boost::uuids::uuid& id) const { |
| 39 | auto iter = nodes().find(id); |
| 40 | if (iter != nodes().end()) { return iter->second.get(); } |
| 41 | return nullptr; |
| 42 | } |
| 43 | |
| 44 | NodeInstance* GraphFunction::entryNode() const noexcept { |
| 45 | auto matching = nodesWithType("lang", "entry"); |
no test coverage detected