class ActiveRecord::Relation::Merger

def initialize(relation, other, rewhere = nil)

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

def initialize: ((LinkedConnection::ActiveRecord_AssociationRelation | Notification::ActiveRecord_AssociationRelation) relation, (LinkedConnection::ActiveRecord_Relation | Notification::ActiveRecord_Relation) other, ?nil rewhere) -> void

This signature was generated using 2 samples from 1 application.

def initialize(relation, other, rewhere = nil)
  @relation = relation
  @values   = other.values
  @other    = other
  @rewhere  = rewhere
end