method

any?

any?(*candidates, &block)
public

Passes each element of candidates collection to ArrayInquirer collection. The method returns true if at least one element is the same. If candidates collection is not given, method returns true.

variants = ActiveSupport::ArrayInquirer.new([:phone, :tablet])

variants.any?                      # => true
variants.any?(:phone, :tablet)     # => true
variants.any?('phone', 'desktop')  # => true
variants.any?(:desktop, :watch)    # => false