module Solr4R::Result::Terms
Public Instance Methods
to_i()
click to toggle source
# File lib/solr4r/result.rb 119 def to_i 120 fetch('terms').size 121 end
Private Instance Methods
_each() { |key, Hash| ... }
click to toggle source
# File lib/solr4r/result.rb 125 def _each 126 fetch('terms').each { |key, value| 127 yield key, Hash[*value] 128 } 129 end