ST_Disjoint(a, b) — no shared space. Inverse of ST_Intersects.
(a: &Geometry, b: &Geometry)
| 20 | |
| 21 | /// ST_Disjoint(a, b) — no shared space. Inverse of ST_Intersects. |
| 22 | pub fn st_disjoint(a: &Geometry, b: &Geometry) -> bool { |
| 23 | !st_intersects(a, b) |
| 24 | } |
nothing calls this directly
no test coverage detected