(v, c *Version)
| 226 | } |
| 227 | |
| 228 | func constraintLessThanEqual(v, c *Version) bool { |
| 229 | return prereleaseCheck(v, c) && v.Compare(c) <= 0 |
| 230 | } |
| 231 | |
| 232 | func constraintPessimistic(v, c *Version) bool { |
| 233 | // Using a pessimistic constraint with a pre-release, restricts versions to pre-releases |
nothing calls this directly
no test coverage detected