MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / st_disjoint

Function st_disjoint

nodedb-spatial/src/predicates/mod.rs:22–24  ·  view source on GitHub ↗

ST_Disjoint(a, b) — no shared space. Inverse of ST_Intersects.

(a: &Geometry, b: &Geometry)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

st_intersectsFunction · 0.85

Tested by

no test coverage detected