<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>We already don't have a .last on CollectionType and nobody's been complaining about that. Besides, sequences don't necessarily even terminate.<br></div>
<div>&nbsp;</div>
<div>-Kevin Ballard</div>
<div>&nbsp;</div>
<div>On Wed, Dec 30, 2015, at 04:01 PM, Daniel Duan wrote:<br></div>
<blockquote type="cite"><div>Users who don’t get the single-pass nature of SequenceType may expect a .last as well.<br></div>
<div>&nbsp;</div>
<div><div><blockquote type="cite"><div>On Dec 30, 2015, at 3:57 PM, Kevin Ballard via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div><div>It's sometimes useful to get the first element of a sequence. To that end I'd like to propose<br></div>
<div>&nbsp;</div>
<div><div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(112, 61, 170);"><span class="colour" style="color:rgb(187, 44, 162)">extension</span><span style=""></span>SequenceType<span style=""> {</span><br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(144, 45, 208);"><span style=""></span>/// Returns the first element of `self`, or `nil` if `self` is empty.<br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(144, 45, 208);"><span style=""></span>/// - Complexity: O(1)<br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(112, 61, 170);"><span style=""></span><span class="colour" style="color:rgb(187, 44, 162)">var</span><span style=""> first: </span>Self<span style="">.</span>Generator<span style="">.</span>Element<span style="">? {</span><br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;"><span class="colour" style="color:rgb(187, 44, 162)">var</span> gen = <span class="colour" style="color:rgb(61, 29, 129)">generate</span>()<br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;"><span class="colour" style="color:rgb(187, 44, 162)">return</span> gen.<span class="colour" style="color:rgb(61, 29, 129)">next</span>()<br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;">&nbsp; &nbsp; }<br></div>
<div style="margin-top:0px;margin-bottom:0px;font-size:11px;line-height:normal;font-family:Menlo;">}<br></div>
<div>&nbsp;</div>
<div>I think it makes sense to add this property to the definition of SequenceType as well, so various sequences can override it to avoid constructing a generator.<br></div>
</div>
<div>&nbsp;</div>
<div>With this added to SequenceType, we can remove it from CollectionType, as the behavior will be the same.<br></div>
<div>&nbsp;</div>
<div>-Kevin Ballard<br></div>
<div><img style="height:1px !important;width:1px !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;margin-top:0px !important;margin-bottom:0px !important;margin-right:0px !important;margin-left:0px !important;padding-top:0px !important;padding-bottom:0px !important;padding-right:0px !important;padding-left:0px !important;" border="0" height="1" width="1" alt="" src="https://www.fastmailusercontent.com/proxy/8cd6358bea2623e51d84aa288ae461fd69f8bdddc4531283960ff23340e3275f/8647470737a3f2f25723030323431303e23647e23756e64676279646e2e65647f27766f2f60756e6f35707e6d31446b6664596140794830336e45497f6274745a784262366366614234373a4243317f41427538614f454541744a44546e466039393551576734675e613635577b6b6554657c64534a61666861334136673545303f4e624071317853446e6770777d683e6f41537c6834436a72377f695433417e4772784951565a5959315d4446636549556159326d4a7a58437e4668416a616863323b494765616b65586445483249643774555b4f64675d6a6d436242424654684533303336425341383957437e6b484d22364d2236474a6535395d6649566657425d22324240315d23344d23344/open"><br></div>
</div>
<div>_______________________________________________<br></div>
<div>swift-evolution mailing list<br></div>
<div><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div>https://lists.swift.org/mailman/listinfo/swift-evolution<br></div>
</div>
</blockquote></div>
</div>
</blockquote><div>&nbsp;</div>
</body>
</html>