class ActiveRecord::PredicateBuilder::BasicObjectHandler

def call(attribute, value)

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

def call: (Arel::Attributes::Attribute attribute, (String | Integer) value) -> Arel::Nodes::Equality

This signature was generated using 58 samples from 2 applications.

def call(attribute, value)
  bind = predicate_builder.build_bind_attribute(attribute.name, value)
  attribute.eq(bind)
end