class ActiveRecord::Associations::AssociationScope

def join(table, constraint)

Experimental RBS support (using type sampling data from the type_fusion project).

def join: (Arel::Table table, Arel::Nodes::Equality constraint) -> untyped

This signature was generated using 1 sample from 1 application.

def join(table, constraint)
  Arel::Nodes::LeadingJoin.new(table, Arel::Nodes::On.new(constraint))
end