= private = protected
to_a()
Converts the contents of the database to an array of [key, value] arrays, and returns it.
# File lib/yaml/dbm.rb, line 259 def to_a a = [] keys.each { |k| a.push [ k, self.fetch( k ) ] } a end