# File lib/backports/2.0.0/stdlib/ostruct.rb, line 19
  def each_pair
    return to_enum(:each_pair) unless block_given?
    @table.each_pair{|p| yield p}
  end