<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div class="">
<div class="">-Dave</div>
</div>
<br class=""><div><blockquote type="cite" class=""><div class="">On Dec 30, 2015, at 5:00 PM, Kevin Ballard via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class="">


<title class=""></title>

<div class=""><div class="">On Wed, Dec 30, 2015, at 04:39 PM, Daniel Duan wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">Here it is&nbsp;<a href="https://github.com/apple/swift/blob/master/stdlib/public/core/CollectionAlgorithms.swift.gyb#L26" class="">https://github.com/apple/swift/blob/master/stdlib/public/core/CollectionAlgorithms.swift.gyb#L26</a><br class=""></div>
<div class=""><div class="">&nbsp;</div>
<div class=""><blockquote type="cite" class=""><div class="">On Dec 30, 2015, at 4:27 PM, Kevin Ballard &lt;<a href="mailto:kevin@sb.org" class="">kevin@sb.org</a>&gt; wrote:<br class=""></div>
<div class="">&nbsp;</div>
<div class=""><div class=""><div class="">We already don't have a .last on CollectionType and nobody's been complaining about that. Besides, sequences don't necessarily even terminate.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">-Kevin Ballard<br class=""></div>
<div class="">&nbsp;</div>
<div class="">On Wed, Dec 30, 2015, at 04:01 PM, Daniel Duan wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">Users who don’t get the single-pass nature of SequenceType may expect a .last as well.<br class=""></div>
</blockquote></div>
</div>
</blockquote></div>
</div>
</blockquote><div class="">&nbsp;</div>
<div class="">Ah you're right, I was just looking at the unconstrained protocol. In any case, we could theoretically provide a .last, but I don't think that's useful enough on sequences to warrant inclusion. I know I've wanted .first many times and I've never wanted .last.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">Another motivation for adding this that I forgot to mention is that today the code `someCol.lazy.filter(pred).first` actually isn't lazy at all, it filters the entire collection and builds a new array (because SequenceType doesn't have .first so it resolves the .filter() to the eager version instead of the lazy version). </div></div></div></blockquote><div><br class=""></div>Oh, that’s nasty. &nbsp;I wonder if there’s something we can do with ambiguity to make the eager overload inaccessible in that context? &nbsp;Would you mind opening a bug for this?&nbsp;</div><div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><div class="">Adding .first to SequenceType makes that expression actually do what the user intended (although my other proposal for SequenceType.find() provides a much better way to accomplish the same task).<br class=""></div>
<div class="">&nbsp;</div>
<div class="">On Wed, Dec 30, 2015, at 04:40 PM, gs. wrote:<br class=""></div>
<blockquote type="cite" class=""><div class="">I like this addition and I think that we should take care to document whether or not this mutates the sequence. I actually expect it to but maybe I am mistaken.<br class=""></div>
</blockquote><div class="">&nbsp;</div>
<div class="">(moving this back to the list)<br class=""></div>
<div class="">&nbsp;</div>
<div class="">I considered documenting that, but none of the existing "destructive" methods on SequenceType document that. I think the assumption is that anything that has to inspect the contents of the sequence is obviously consuming the sequence to do that. In fact, the one method that doesn't consume anything (not counting generate() since any use of the generator is destructive), underestimateCount(), is explicitly documented as being non-destructive.<br class=""></div>
<div class="">&nbsp;</div>
<div class="">Also, I couldn't think of a non-awkward way to say "this property partially consumes the sequence if it's a sequence that is destructively "consumed" by iteration". Especially because "partially consumed" isn't actually a property of sequences; it's explicitly documented that calling generate() a second time after any iteration is allowed to return a completely arbitrary sequence of elements from the second generator (for example, a generator that returns lines read from some stream might buffer more data internally and therefore constructing a second generator would possibly skip data that was never returned from the first generator).<br class=""></div>
<div class="">&nbsp;</div>
<div class="">-Kevin Ballard</div>

<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=JfMPa-2F7wwZPzsZ3QKA8NjtONIYX4SjbWuUxtpfsTY2hr20Kkib8Yd2rLIiLiiElKYMDUuUCXNdm3m9qHodoQ97gEmjN185HJjqjKRGARBxFOSGC5DG-2FWevhfWHltUcA0-2BJ9kON-2FmGD2KNjIOQrKOAJleIaIjTG-2FMYcGrmSHQWffPdtF13u7cvY0gkQBIO0g60eCjCYa-2BaqtY-2Bzd7Cp3OyU-2BghouDXrXAS5easlISNeQ-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" class="">
</div>


_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>