method

map

map(&block)
public

No documentation available.

# File activerecord/lib/active_record/attribute_set.rb, line 92
    def map(&block)
      new_attributes = attributes.transform_values(&block)
      AttributeSet.new(new_attributes)
    end