<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div><div style="direction: inherit;">If I'm not mistaken, the type of T can be inferred from the `next` closure here. $0 is an optional, so you end up with a sequence of optionals.</div></div><div><br>On 16 Aug 2016, at 00:51, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com">xiaodi.wu@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div>Given:<br><br>let foo: T? = something()<br>let bar = sequence(first: foo, next: { $0?.frobnicate() })<br><br>If first could be of type `T` or `T?`, is bar of type `UnfoldSequence&lt;T&gt;` or `UnfoldSequence&lt;T?&gt;`?<br><div class="gmail_quote"><div dir="ltr">On Mon, Aug 15, 2016 at 17:15 Tim Vermeulen via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>I doubt that’s it, in no way is an an empty sequence inherently unsafe. The entire standard library is built with empty sequences in mind. I’m more inclined to think it’s an oversight.</div></div><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On 15 Aug 2016, at 23:15, Maximilian Hünenberger &lt;<a href="mailto:m.huenenberger@me.com" target="_blank">m.huenenberger@me.com</a>&gt; wrote:</div><br><div><div dir="auto"><div></div><div>Ok, I see. However this could be a potential source of bugs/performance issues where you don't consider the nil case and you do some unnecessary work. By prohibiting to pass nil you have to manually unwrap and you immediately see the "optionality".</div><div><br>Am 15.08.2016 um 22:36 schrieb Tim Vermeulen &lt;<a href="mailto:tvermeulen@me.com" target="_blank">tvermeulen@me.com</a>&gt;:<br><br></div><blockquote type="cite"><div><div>Oh, that’s true, I misunderstood your previous message. It’s not about passing nil, but it’s about passing optionals. The point is to be able to do something like this:</div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><span style="color:#ba2da2">let</span><span> number = functionThatReturnsAnOptional()</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo"><span>sequence(first: </span><span style="color:#4f8187">number</span><span>, next: { $0 % </span><span style="color:#272ad8">2</span><span> == </span><span style="color:#272ad8">0</span><span> ? $0 / </span><span style="color:#272ad8">2</span><span> : </span><span style="color:#ba2da2">nil</span><span> })</span></div></div><br><div><blockquote type="cite"><div>On 15 Aug 2016, at 22:26, Maximilian Hünenberger &lt;<a href="mailto:m.huenenberger@me.com" target="_blank">m.huenenberger@me.com</a>&gt; wrote:</div><br><div><div>Probably I didn't understand your proposal. What do you want to change exactly?<br><br>I thought:<br>public func sequence&lt;T&gt;(first: T, next: @escaping (T) -&gt; T?) -&gt; UnfoldFirstSequence&lt;T&gt; { ... }<br><br>To:<br>public func sequence&lt;T&gt;(first: T?, next: @escaping (T) -&gt; T?) -&gt; UnfoldFirstSequence&lt;T&gt; { ... }<br><br><blockquote type="cite">Am 15.08.2016 um 22:17 schrieb Tim Vermeulen &lt;<a href="mailto:tvermeulen@me.com" target="_blank">tvermeulen@me.com</a>&gt;:<br><br>You can’t; the `first` parameter has type `T`, not `T?`.<br><br><blockquote type="cite">On 15 Aug 2016, at 22:10, Maximilian Hünenberger &lt;<a href="mailto:m.huenenberger@me.com" target="_blank">m.huenenberger@me.com</a>&gt; wrote:<br><br>Hi Tim,<br><br>If you pass "nil" to "first" isn't this an empty sequence? So it would be redundant.<br><br>Best regards<br>Maximilian<br><br><blockquote type="cite">Am 15.08.2016 um 01:27 schrieb Tim Vermeulen via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;:<br><br>sequence(first:next:) takes a non-optional first argument. Is there a reason for that? sequence(state:next:) allows empty sequences, and I don’t see why sequence(first:next:) shouldn’t. The fix would be to simply add the `?` in the function signature; no other changes are required to make it work.<br><br>I considered just filing a bug report, but since this is a change of the public API...<br>_______________________________________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></blockquote></blockquote><br></blockquote></div></div></blockquote></div><br></div></blockquote></div></div></blockquote></div><br></div>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>
</div></blockquote></body></html>