(minLength int)
| 328 | } |
| 329 | |
| 330 | func ErrorTooFewElements(minLength int) error { |
| 331 | return errors.WithStack(&errors.Error{ |
| 332 | Kind: ErrTooFewElements, |
| 333 | Message: fmt.Sprintf("must contain at least %d elements", minLength), |
| 334 | }) |
| 335 | } |
| 336 | |
| 337 | func ErrorTooManyElements(maxLength int) error { |
| 338 | return errors.WithStack(&errors.Error{ |
no test coverage detected