class ActiveModel::Attribute

def with_cast_value(name, value_before_type_cast, type)

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

def with_cast_value: (String name, Integer value_before_type_cast, ActiveModel::Type::Integer type) -> ActiveModel::Attribute::WithCastValue

This signature was generated using 7 samples from 1 application.

def with_cast_value(name, value_before_type_cast, type)
  WithCastValue.new(name, value_before_type_cast, type)
end