Sha256: 260544ccc15b3ba9d2dadbe80a89fa3a81eb27be1ca4ea59d3525259ed0c439c
Contents?: true
Size: 505 Bytes
Versions: 18
Compression:
Stored size: 505 Bytes
Contents
module Frodo 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
18 entries across 18 versions & 1 rubygems