Method: SQLite3::ResultSet#each
- Defined in:
- lib/sqlite3/resultset.rb
#each ⇒ Object
Required by the Enumerable mixin. Provides an internal iterator over the rows of the result set.
48 49 50 51 52 |
# File 'lib/sqlite3/resultset.rb', line 48 def each while (node = self.next) yield node end end |