* @brief Checks if module contains function. */
| 24 | * @brief Checks if module contains function. |
| 25 | */ |
| 26 | bool Module::hasFunctionWithName(const std::string &name) const |
| 27 | { |
| 28 | return retdec::utils::mapHasKey(functions, name); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * @brief Returns function from module. |