# frozen_string_literal: true # encoding: utf-8 module Mongoid class Criteria module Inspectable # Get a pretty string representation of the criteria, including the # selector, options, matching count and documents for inspection. # # @example Inspect the criteria. # criteria.inspect # # @return [ String ] The inspection string. # # @since 1.0.0 def inspect %Q{# } end end end end