# File lib/innodb/list.rb, line 125
  def each
    unless block_given?
      return enum_for(:each)
    end

    list_cursor.each_node do |node|
      yield node
    end
  end