# File lib/couchrest/model/casted_array.rb, line 38
    def insert index, *args
      values = *args.map{|obj| instantiate_and_cast(obj, false)}
      couchrest_parent_will_change! if use_dirty?
      super(index, *values)
    end