class ActiveRecord::Relation::FromClause

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

# sig/active_record/relation/from_clause.rbs

class ActiveRecord::Relation::FromClause
  def self.empty: () -> untyped
end

:nodoc:

def self.empty

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

def self.empty: () -> untyped

This signature was generated using 10 samples from 1 application.

def self.empty
  @empty ||= new(nil, nil).freeze
end

def ==(other)

def ==(other)
  self.class == other.class && value == other.value && name == other.name
end

def empty?

def empty?
  value.nil?
end

def initialize(value, name)

def initialize(value, name)
  @value = value
  @name = name
end

def merge(other)

def merge(other)
  self
end