class ActiveRecord::PredicateBuilder

def build_bind_attribute(column_name, value)

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

def build_bind_attribute: (String column_name, String value) -> ActiveRecord::Relation::QueryAttribute

This signature was generated using 64 samples from 1 application.

def build_bind_attribute(column_name, value)
  Relation::QueryAttribute.new(column_name, value, table.type(column_name))
end