read_other(klass)
private

No documentation available.

# File activerecord/lib/active_record/attribute_assignment.rb, line 175
      def read_other(klass)
        max_position = extract_max_param
        positions    = (1..max_position)
        validate_required_parameters!(positions)

        set_values = values.values_at(*positions)
        klass.new(*set_values)
      end