<div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="white-space:pre-wrap"><br class="Apple-interchange-newline">&gt; For example in `if let aBool = aBool where !aBool`, let&#39;s suppose that we know that `aBool` optional it&#39;s not empty before this check. How would you write it? `!aBool!` or with the `if let...` ?<br><br></div><div style="white-space:pre-wrap">if aBool == false {} covers this nicely. <br></div></blockquote><div><br></div><div>I think it will be `if aBool! == false {} ` to match the case in my previous example (not the <b>!</b>) (and note that I need to note the <b>!</b> :) )</div><div><br></div><div>I have the feeling that the Swift dev team had to follow this path when they choose to use <b>!</b> to unwrap the optional values, it will be great to have they insight.</div><div><br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="white-space:pre-wrap">As for the whole topic of words vs cryptic symbols for Boolean operators I&#39;m agnostic on what&#39;s best but imho we need to have consistency. E.g. either all words, or all math symbols or all the same as in C (current state of things). <br></div></blockquote><div><br></div><div>Agree. We could / should then use the ~ ?</div><div> </div></div></div>