method
fetch_attribute
v8.1.1 -
Show latest stable
- Class:
Arel::Nodes::FetchAttribute
fetch_attribute(&)public
No documentation available.
# File activerecord/lib/arel/nodes/binary.rb, line 33
def fetch_attribute(&)
if left.is_a?(Arel::Attributes::Attribute)
yield left
elsif right.is_a?(Arel::Attributes::Attribute)
yield right
end
end