(a, b, c byte)
| 86 | } |
| 87 | |
| 88 | func packTrigram(a, b, c byte) uint32 { |
| 89 | return uint32(toLowerASCII(a))<<16 | uint32(toLowerASCII(b))<<8 | uint32(toLowerASCII(c)) |
| 90 | } |
| 91 | |
| 92 | // searchSnapshot runs the full search pipeline against a single |
| 93 | // root snapshot: it selects a strategy (prefix, trigram, or |
no test coverage detected