class Geoq::Commands::GeoHash::Children
Public Instance Methods
output()
click to toggle source
# File lib/geoq/commands/geohash.rb, line 19 def output Enumerator.new do |e| instream.each do |entity| entity.gh_children.each do |gh| e << gh end end end end