method
build_children
v7.1.3.4 -
Show latest stable
- Class:
ActiveRecord::Associations::Preloader::Branch
build_children(children)private
No documentation available.
# File activerecord/lib/active_record/associations/preloader/branch.rb, line 120
def build_children(children)
Array.wrap(children).flat_map { |association|
Array(association).flat_map { |parent, child|
Branch.new(
parent: self,
association: parent,
children: child,
associate_by_default: associate_by_default,
scope: scope
)
}
}
end