Method: RGeo::Geos::CAPIGeometryMethods#eql?
- Defined in:
- ext/geos_c_impl/geometry.c
#eql?(rhs) ⇒ Boolean
396 397 398 399 400 401 |
# File 'ext/geos_c_impl/geometry.c', line 396 static VALUE method_geometry_eql(VALUE self, VALUE rhs) { // This should be overridden by the subclass. return self == rhs ? Qtrue : Qfalse; } |