| 98 | [[nodiscard]] MultiMatchResult findFirstOfPatterns(const QVector<T>& patterns) const; |
| 99 | |
| 100 | [[nodiscard]] qsizetype overflowCount() const noexcept |
| 101 | { |
| 102 | return m_overflowCount.load(std::memory_order_relaxed); |
| 103 | } |
| 104 | |
| 105 | void resetOverflowCount() noexcept { m_overflowCount.store(0, std::memory_order_relaxed); } |
| 106 |