IsPrefixScan is true if prefix scanning not found the result.
(err error)
| 31 | |
| 32 | // IsPrefixScan is true if prefix scanning not found the result. |
| 33 | func IsPrefixScan(err error) bool { |
| 34 | return errors.Is(err, ErrPrefixScan) |
| 35 | } |
| 36 | |
| 37 | // IsPrefixSearchScan is true if prefix and search scanning not found the result. |
| 38 | func IsPrefixSearchScan(err error) bool { |
no outgoing calls