Skip to content

Commit ffeec01

Browse files
committed
wip
1 parent 881d68e commit ffeec01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

or.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,12 @@ func compactTwo(a, b CeilingFloorConstrainter) (CeilingFloorConstrainter, bool)
260260
}, true
261261
}
262262

263-
func overlap(a, b CeilingFloorConstrainter) bool { // TODO: Test me.
263+
func overlap(a, b CeilingFloorConstrainter) bool {
264264
return a.Check(*b.floor().version) ||
265265
b.Check(*a.floor().version)
266266
}
267267

268-
func continuous(a, b CeilingFloorConstrainter) bool { // TODO: Test me.
268+
func continuous(a, b CeilingFloorConstrainter) bool {
269269
f := func(a, b CeilingFloorConstrainter) bool {
270270
return (a.ceiling().inclusive() || b.floor().inclusive()) &&
271271
a.ceiling().version.Compare(*b.floor().version) == 0

0 commit comments

Comments
 (0)