Method: Groonga::SubRecords#each

Defined in:
lib/groonga/sub-records.rb

#each {|record| ... } ⇒ void

This method returns an undefined value.

Yields:

  • (record)

    Gives a sub record to the block.

Yield Parameters:

  • record (Record)

    A sub record.



43
44
45
# File 'lib/groonga/sub-records.rb', line 43

def each(&block)
  @record.table.each_sub_record(@record.record_raw_id, &block)
end