Sha256: c397d32e73952592437a85eaf9f12b5d03084c8acd099729afa630f70c8feb92
Contents?: true
Size: 506 Bytes
Versions: 6
Compression:
Stored size: 506 Bytes
Contents
module OData4 class Query class Criteria module GeographyFunctions # Applies the `geo.distance` function. # @param to [to_s] # @return [self] def distance(to) set_function_and_argument(:'geo.distance', to) end # Applies the `geo.intersects` function. # @param what [to_s] # @return [self] def intersects(what) set_function_and_argument(:'geo.intersects', what) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems