| 203 | } |
| 204 | |
| 205 | bool Simulation::hasMoleculeTemplate(std::string_view name) const { |
| 206 | return findMoleculeTemplate(name) != nullptr; |
| 207 | } |
| 208 | |
| 209 | const MoleculeTemplate* Simulation::findMoleculeTemplate(std::string_view name) const { |
| 210 | const auto it = moleculeTemplates_.find(std::string(name)); |
nothing calls this directly
no outgoing calls
no test coverage detected