instance method
each
Ruby on Rails 4.2.9
Since v3.1.12Signature
each()
No documentation comment.
Source
# File activerecord/lib/active_record/result.rb, line 49
def each
if block_given?
hash_rows.each { |row| yield row }
else
hash_rows.to_enum { @rows.size }
end
end
Defined in activerecord/lib/active_record/result.rb line 49
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Result