method
value
v5.0.0.1 -
Show latest stable
- Class:
ActiveRecord::Attribute
value()public
No documentation available.
# File activerecord/lib/active_record/attribute.rb, line 36
def value
# `defined?` is cheaper than `||=` when we get back falsy values
@value = type_cast(value_before_type_cast) unless defined?(@value)
@value
end