method
inquiry
v8.1.1 -
Show latest stable
- Class:
Array
inquiry()public
Wraps the array in an ActiveSupport::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