From 1188defd08ef6ab71c9e09d548f269a94fbafd5f Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Fri, 13 Jun 2025 12:14:00 +0200 Subject: [PATCH] added next() method --- mls.hh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mls.hh b/mls.hh index 7930605..685f756 100644 --- a/mls.hh +++ b/mls.hh @@ -38,6 +38,11 @@ public: (*this)(); return reg != r; } + int next() + { + (*this)(); + return reg; + } bool operator()() { bool fb = reg & test;