added next() method

This commit is contained in:
Ahmet Inan 2025-06-13 12:14:00 +02:00
commit 1188defd08

5
mls.hh
View file

@ -38,6 +38,11 @@ public:
(*this)();
return reg != r;
}
int next()
{
(*this)();
return reg;
}
bool operator()()
{
bool fb = reg & test;