ST_Within(a, b) — A is fully within B. Equivalent to ST_Contains(b, a).
(a: &Geometry, b: &Geometry)
| 15 | |
| 16 | /// ST_Within(a, b) — A is fully within B. Equivalent to ST_Contains(b, a). |
| 17 | pub fn st_within(a: &Geometry, b: &Geometry) -> bool { |
| 18 | st_contains(b, a) |
| 19 | } |
| 20 | |
| 21 | /// ST_Disjoint(a, b) — no shared space. Inverse of ST_Intersects. |
| 22 | pub fn st_disjoint(a: &Geometry, b: &Geometry) -> bool { |
no test coverage detected