Sha256: c0b199031fc6c9e8e75f892859c1613b15624ed107f5edd5937b1c0189892119
Contents?: true
Size: 842 Bytes
Versions: 13
Compression:
Stored size: 842 Bytes
Contents
# frozen_string_literal: true # ----------------------------------------------------------------------------- # # MultiLineString feature interface # # ----------------------------------------------------------------------------- module RGeo module Feature # == SFS 1.1 Description # # A MultiLineString is a MultiCurve whose elements are LineStrings. # # == Notes # # MultiLineString is defined as a module and is provided primarily # for the sake of documentation. Implementations need not necessarily # include this module itself. Therefore, you should not depend on the # kind_of? method to check type. Instead, use the provided check_type # class method (or === operator) defined in the Type module. module MultiLineString include MultiCurve extend Type end end end
Version data entries
13 entries across 13 versions & 1 rubygems