= private = protected
to_hash()
Converts the contents of the database to an in-memory Hash object, and returns it.
# File lib/yaml/dbm.rb, line 270 def to_hash h = {} keys.each { |k| h[ k ] = self.fetch( k ) } h end