class InterMine::Results::SummaryReader
Public Class Methods
new(uri, query, start, size, path)
click to toggle source
Calls superclass method
InterMine::Results::ResultsReader::new
# File lib/intermine/results.rb 429 def initialize(uri, query, start, size, path) 430 super(uri, query, start, size) 431 @path = path 432 end
Public Instance Methods
each() { |x| ... }
click to toggle source
# File lib/intermine/results.rb 434 def each 435 each_summary(@path) {|x| yield x} 436 end