| 188 | |
| 189 | template<typename Eval, typename Engine> |
| 190 | void apply(Eval &t_eval, Engine &t_engine) const |
| 191 | { |
| 192 | apply(m_typeinfos.begin(), m_typeinfos.end(), t_engine); |
| 193 | apply(m_funcs.begin(), m_funcs.end(), t_engine); |
| 194 | apply_eval(m_evals.begin(), m_evals.end(), t_eval); |
| 195 | apply_single(m_conversions.begin(), m_conversions.end(), t_engine); |
| 196 | apply_globals(m_globals.begin(), m_globals.end(), t_engine); |
| 197 | } |
| 198 | |
| 199 | bool has_function(const Proxy_Function &new_f, const std::string &name) |
| 200 | { |
no test coverage detected