<div dir="ltr">er, I guess it&#39;s probably plain ol&#39; map, rather than flatMap.<div class="gmail_extra">
<br><div class="gmail_quote">On Mon, Aug 1, 2016 at 8:28 PM, Jacob Bandes-Storch <span dir="ltr">&lt;<a href="mailto:jtbandes@gmail.com" target="_blank">jtbandes@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">You can think of this like flatMap:<div><br></div><div>    let count = s.flatMap { $0.characters.count } ?? 0    // like s?.characters.count ?? 0</div><div>    let count = s.flatMap { $0.characters }.flatMap { $0.count } ?? 0   // like (s?.characters)?.count ?? 0</div><div class="gmail_extra"><span class="HOEnZb"><font color="#888888"><br clear="all"><div><div data-smartmail="gmail_signature"><div dir="ltr"><div>Jacob<br></div></div></div></div>
<br></font></span><div class="gmail_quote"><div><div class="h5">On Mon, Aug 1, 2016 at 10:26 AM, Stephen Schaub via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt;</span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr">With optional chaining, if I have a Swift variable<br><br>    var s: String?<br><br>s might contain nil, or a String wrapped in an Optional. So, I tried this to get its length:<br><br>    let count = s?.characters?.count ?? 0<br><br>However, the compiler wants this:<br><br>    let count = s?.characters.count ?? 0<div><br></div><div>or this:</div><div><br></div><div>    let count = (s?.characters)?.count ?? 0<br><br>My understanding of optional chaining is that, once you start using &#39;?.&#39; in a dotted expression, the rest of the properties evaluate as optional and are typically accessed by &#39;?.&#39;, not &#39;.&#39;.<br><br>So, I dug a little further and tried this in the playground:<br><br>var s: String? = &quot;Foo&quot;<br>print(s?.characters)<br><br>The result indicates that s?.characters is indeed an Optional instance, indicating that s?.characters.count should be illegal.<br><br>Why is s?.characters.count a legal expression?<br><br><br>--<br>Stephen Schaub
</div></div>
<br></div></div><span class="">_______________________________________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
<br></span></blockquote></div><br></div></div>
</blockquote></div><br></div></div>