(v, c *Version)
| 218 | } |
| 219 | |
| 220 | func constraintLessThan(v, c *Version) bool { |
| 221 | return prereleaseCheck(v, c) && v.Compare(c) == -1 |
| 222 | } |
| 223 | |
| 224 | func constraintGreaterThanEqual(v, c *Version) bool { |
| 225 | return prereleaseCheck(v, c) && v.Compare(c) >= 0 |
nothing calls this directly
no test coverage detected