| 30 | |
| 31 | template <typename Fn> |
| 32 | void ForEachSynonym(Fn && fn) const |
| 33 | { |
| 34 | std::for_each(m_synonyms.begin(), m_synonyms.end(), std::forward<Fn>(fn)); |
| 35 | } |
| 36 | |
| 37 | template <typename Fn> |
| 38 | void ForOriginalAndSynonyms(Fn && fn) const |
no test coverage detected