| 372 | */ |
| 373 | template<typename T, Concepts::ByteLike StorageType> |
| 374 | int IO::CircularBuffer<T, StorageType>::findPatternKMP(const T& pattern, const int pos) |
| 375 | { |
| 376 | return findPatternKMP(pattern, computeKMPTable(pattern), pos); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * @brief Pattern search: vectorized memchr paths for the common short delimiters, KMP otherwise. |
no test coverage detected