= private = protected
each_pair()
Calls the given block once for each key, value pair in the database.
Returns self.
# File lib/yaml/dbm.rb, line 140 def each_pair # :yields: [key, value] keys.each { |k| yield k, fetch( k ) } self end