Sha256: 61b554d0de27172cc2626f0846ac9524a89d8eba8c453c8bf8b6ef796def994d
Contents?: true
Size: 305 Bytes
Versions: 12
Compression:
Stored size: 305 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 == 0 end end
Version data entries
12 entries across 12 versions & 1 rubygems