class Arel::SelectManager

def distinct(value = true)

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

def distinct: (?nil value) -> Arel::SelectManager

This signature was generated using 31 samples from 2 applications.

def distinct(value = true)
  if value
    @ctx.set_quantifier = Arel::Nodes::Distinct.new
  else
    @ctx.set_quantifier = nil
  end
  self
end