| 460 | } |
| 461 | |
| 462 | static bool block_suffix(const Bytes &goal) |
| 463 | { |
| 464 | for (auto const& [key, seq] : sequences) { |
| 465 | if (is_bytes_suffix(goal, key)) { |
| 466 | return true; |
| 467 | } |
| 468 | } |
| 469 | return false; |
| 470 | } |
| 471 | |
| 472 | static BlockList make_block_prev(const Bytes &goal) |
| 473 | { |
no test coverage detected