Skip to content

Commit

Permalink
bugfix disjoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz committed Oct 9, 2023
1 parent 35817e2 commit 0216c20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Extents.jl
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ $ORDER_DOC
$DE_9IM_DOC
"""
disjoint(a, b; kw...) = intersects(a, b; kw...) # negates `intersects`
disjoint(a, b; kw...) = !intersects(a, b; kw...)

"""
touches(a::Extent, b::Extent; strict=false)
Expand Down Expand Up @@ -302,7 +302,7 @@ _touch((min_a, max_a)::Tuple, (min_b, max_b)::Tuple) = (min_a == max_b || max_a
At least one point of `b` lies in `a`, and no point of `b` lies in the exterior of `a`,
Every point of `b` is a point in the interior or boundary of `a`.
Identical to [`coveredby`](@ref) with argument order reversedl
Identical to [`coveredby`](@ref) with argument order reversed.
$STRICT_DOC
Expand All @@ -322,7 +322,7 @@ _cover((min_a, max_a)::Tuple, (min_b, max_b)::Tuple) = (min_a <= min_b && max_a
At least one point of `a` lies in `b`, and no point of `a` lies in the exterior of `b`,
Every point of `a` is a point in the interior or boundary of `b`.
Identical to [`covers`](@ref) with argument order reversedl
Identical to [`covers`](@ref) with argument order reversed.
$STRICT_DOC
Expand Down

0 comments on commit 0216c20

Please sign in to comment.