Sha256: b1a439267ba5f98aedae2deddc83df437781f8a776a408dec39a99fb5abfe54c

Contents?: true

Size: 467 Bytes

Versions: 155

Compression:

Stored size: 467 Bytes

Contents

# frozen_string_literal: true

require "active_support/array_inquirer"

class Array
  # Wraps the array in an +ArrayInquirer+ object, which gives a friendlier way
  # to check its string-like contents.
  #
  #   pets = [:cat, :dog].inquiry
  #
  #   pets.cat?     # => true
  #   pets.ferret?  # => false
  #
  #   pets.any?(:cat, :ferret)  # => true
  #   pets.any?(:ferret, :alligator)  # => false
  def inquiry
    ActiveSupport::ArrayInquirer.new(self)
  end
end

Version data entries

155 entries across 144 versions & 16 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.9 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.8 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.7 lib/active_support/core_ext/array/inquiry.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/array/inquiry.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.6 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.5 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.4 lib/active_support/core_ext/array/inquiry.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/array/inquiry.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/array/inquiry.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/array/inquiry.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.3 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.2 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7.1 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.0.6.1 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.7 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.0.6 lib/active_support/core_ext/array/inquiry.rb
activesupport-6.1.6.1 lib/active_support/core_ext/array/inquiry.rb