class Bio::FlatFileIndex::BDB_1::PrimaryNameSpace
Public Instance Methods
filename()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb, line 217 def filename File.join(dbname, "key_#{name}") end
mapping(filename)
click to toggle source
# File lib/bio/io/flatfile/bdb.rb, line 214 def mapping(filename) BDBMappingFile.new(filename) end
search(key)
click to toggle source
Calls superclass method
# File lib/bio/io/flatfile/bdb.rb, line 220 def search(key) r = super(key) unless r.empty? then [ r ] else r end end