| 36 | { |
| 37 | } |
| 38 | bool FindValue(const TString& name, TExpressionVariable& value) const override { |
| 39 | typename T::const_iterator it = Container.find(name); |
| 40 | if (it == Container.end()) { |
| 41 | return false; |
| 42 | } |
| 43 | value = it->second; |
| 44 | return true; |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | template <typename... Ts> |
no test coverage detected