(err error)
| 48 | } |
| 49 | |
| 50 | func IsErrMultipleMatch(err error) bool { |
| 51 | _, ok := err.(*ErrMultipleMatch) |
| 52 | return ok |
| 53 | } |
| 54 | |
| 55 | // ErrInvalidFormat is to be returned when reading on-disk data with an unexpected |
| 56 | // format or version. |
no outgoing calls
no test coverage detected