class FDB::Database
def get_range_start_with(prefix, options={}, &block)
def get_range_start_with(prefix, options={}, &block) transact do |tr| a = tr.get_range_start_with(prefix, options).to_a if block_given? a.each &block else a end end end
def get_range_start_with(prefix, options={}, &block) transact do |tr| a = tr.get_range_start_with(prefix, options).to_a if block_given? a.each &block else a end end end