class Arel::SelectManager

def take(limit)

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

def take: (ActiveModel::Attribute::WithCastValue limit) -> Arel::SelectManager

This signature was generated using 2 samples from 1 application.

def take(limit)
  if limit
    @ast.limit = Nodes::Limit.new(limit)
  else
    @ast.limit = nil
  end
  self
end