class Arel::SelectManager

def where(expr)

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

def where: (Arel::Nodes::And expr) -> Arel::SelectManager

This signature was generated using 26 samples from 1 application.

def where(expr)
  if Arel::TreeManager === expr
    expr = expr.ast
  end
  @ctx.wheres << expr
  self
end