diff options
Diffstat (limited to 'libalee/dictionary.hpp')
-rw-r--r-- | libalee/dictionary.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index 0a2e4d3..53172d2 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -21,6 +21,7 @@ #include "types.hpp" +#include <algorithm> #include <cstddef> #include <cstdint> @@ -74,7 +75,15 @@ public: bool equal(Word, const char *, unsigned) const noexcept; bool equal(Word, Word) const noexcept; + template<typename Iter1, typename Iter2> + static bool equal(Iter1 b1, Iter1 e1, Iter2 b2) { + return std::equal(b1, e1, b2, eqchars); + } + virtual ~Dictionary() = default; + +private: + static bool eqchars(char c1, char c2); }; #endif // ALEEFORTH_DICTIONARY_HPP |