class SQLite3::Statement

def each

Experimental RBS support (using type sampling data from the type_fusion project).

def each: () -> SQLite3::Statement

This signature was generated using 28 samples from 2 applications.

def each
  loop do
    val = step
    break self if done?
    yield val
  end
end