class InterMine::Lists::List::SymbolAcceptingHash

Public Instance Methods

[](key) click to toggle source
Calls superclass method
    # File lib/intermine/lists.rb
362 def [](key)
363     return case key
364     when Symbol
365         return super(key.to_s.gsub(/[_]/, '-'))
366     else
367         return super(key)
368     end
369 end