Method: MDBX::Database#to_a
- Defined in:
- lib/mdbx/database.rb
#to_a ⇒ Object
Return the entirety of database contents as an Array of array pairs.
228 229 230 231 232 |
# File 'lib/mdbx/database.rb', line 228 def to_a return self.conditional_snapshot do self.each_pair.to_a end end |