class EE::System::LuaPattern::Match::iterator

#include <luapattern.hpp>

class iterator {
public:
    // construction

    iterator(Match* pm);

    // methods

    bool operator!=(const iterator& other);
    bool operator==(const iterator& other);
    const Match& operator*() const;
    iterator& operator++();
};