<div dir="ltr">I think the nice thing about reduce is that you can use it to implement something in a single line, and directly return it. Making the first parameter inout would require you to write `var result = ....` and `return result` (and `result` will be mutable after the call to `reduce`). Typically, the initial value is some kind of empty value, so copying isn&#39;t a problem. In my usage, making the first parameter inout would make the code more verbose, decrease readability and not win too much.<div><br></div><div>I think that making initialValue an inout is a cool idea, but I don&#39;t think it&#39;s something for this proposal. (I&#39;m open for good arguments, though).</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 18, 2017 at 1:48 PM, Georgios Moschovitis via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">the former gives a hint about what someFunction (and the for-loop) is doing.<br>
<br>
-g.<br>
<div class="HOEnZb"><div class="h5"><br>
&gt; On 18 Jan 2017, at 2:32 PM, Jeremy Pereira via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;&gt; On 18 Jan 2017, at 12:26, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Thought: if the idea is performance and not drop-in replacement, why force the user to incur two copies? If the initial value were inout, this function would be more unambiguous even without a new name, and at _worst_ the user has to declare a variable with var, a worthwhile trade-off to save two copies.<br>
&gt;<br>
&gt; That’s what I thought also until just now, but then why wouldn’t you just use a for …  in loop?<br>
&gt;<br>
&gt; i.e. instead of<br>
&gt;<br>
&gt;    var foo = 0<br>
&gt;    let bar: [SomeType] = ...<br>
&gt;<br>
&gt;    bar.reduce(mutating: &amp;foo, someFunction)<br>
&gt;<br>
&gt; You would write<br>
&gt;<br>
&gt;    var foo = 0<br>
&gt;    let bar: [SomeType] = …<br>
&gt;<br>
&gt;    for e in bar {<br>
&gt;        someFunction(&amp;foo, e)<br>
&gt;    }<br>
&gt;<br>
&gt; which is a bit more readable IMO<br>
</div></div><div class="HOEnZb"><div class="h5">&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br>
______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Chris Eidhof</div>
</div>