class Bio::FlatFileIndex::Indexer::NameSpaces
Public Class Methods
new(*arg)
click to toggle source
Calls superclass method
# File lib/bio/io/flatfile/indexer.rb 26 def initialize(*arg) 27 super() 28 arg.each do |x| 29 self.store(x.name, x) 30 end 31 end
Public Instance Methods
<<(x)
click to toggle source
# File lib/bio/io/flatfile/indexer.rb 35 def <<(x) 36 self.store(x.name, x) 37 end
add(x)
click to toggle source
# File lib/bio/io/flatfile/indexer.rb 38 def add(x) 39 self.store(x.name, x) 40 end
names()
click to toggle source
# File lib/bio/io/flatfile/indexer.rb 32 def names 33 self.keys 34 end