method

grouping_any

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: Predications
grouping_any(method_id, others, *extras) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/arel/predications.rb, line 232
      def grouping_any(method_id, others, *extras)
        nodes = others.map { |expr| send(method_id, expr, *extras) }
        Nodes::Grouping.new nodes.inject { |memo, node|
          Nodes::Or.new(memo, node)
        }
      end
Register or log in to add new notes.