Sha256: edfdbab6e302945358ab0a610de9493df43aad7be852d5e9ceb394108b8ee0ea

Contents?: true

Size: 302 Bytes

Versions: 75

Compression:

Stored size: 302 Bytes

Contents

# frozen_string_literal: true
module Blacklight::Solr::Response::Response
  def response
    self[:response] || {}
  end

  # short cut to response['numFound']
  def total
    response[:numFound].to_s.to_i
  end

  def start
    response[:start].to_s.to_i
  end

  def empty?
    total.zero?
  end
end

Version data entries

75 entries across 75 versions & 2 rubygems

Version Path
blacklight-7.40.0 lib/blacklight/solr/response/response.rb
blacklight-7.39.0 lib/blacklight/solr/response/response.rb
blacklight-7.38.0 lib/blacklight/solr/response/response.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-7.37.0/lib/blacklight/solr/response/response.rb
blacklight-7.37.0 lib/blacklight/solr/response/response.rb
blacklight-7.36.2 lib/blacklight/solr/response/response.rb
blacklight-7.36.1 lib/blacklight/solr/response/response.rb
blacklight-7.36.0 lib/blacklight/solr/response/response.rb
blacklight-7.35.0 lib/blacklight/solr/response/response.rb
blacklight-7.34.0 lib/blacklight/solr/response/response.rb
blacklight-7.33.1 lib/blacklight/solr/response/response.rb
blacklight-7.33.0 lib/blacklight/solr/response/response.rb
blacklight-7.32.0 lib/blacklight/solr/response/response.rb
blacklight-7.31.0 lib/blacklight/solr/response/response.rb
blacklight-7.30.0 lib/blacklight/solr/response/response.rb
blacklight-7.29.0 lib/blacklight/solr/response/response.rb
blacklight-7.28.0 lib/blacklight/solr/response/response.rb
blacklight-7.27.1 lib/blacklight/solr/response/response.rb
blacklight-7.27.0 lib/blacklight/solr/response/response.rb
blacklight-7.26.1 lib/blacklight/solr/response/response.rb