| 450 | } |
| 451 | |
| 452 | static bool block_prefix(const Bytes &goal) |
| 453 | { |
| 454 | for (auto const& [key, seq] : sequences) { |
| 455 | if (is_bytes_prefix(goal, key)) { |
| 456 | return true; |
| 457 | } |
| 458 | } |
| 459 | return false; |
| 460 | } |
| 461 | |
| 462 | static bool block_suffix(const Bytes &goal) |
| 463 | { |
no test coverage detected