method
fetch_attribute
v7.1.3.2 -
Show latest stable
- Class:
Arel::Nodes::And
fetch_attribute(&block)public
No documentation available.
# File activerecord/lib/arel/nodes/and.rb, line 21
def fetch_attribute(&block)
children.any? && children.all? { |child| child.fetch_attribute(&block) }
end