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