<html><head><style>body{font-family:Helvetica,Arial;font-size:13px}</style></head><body style="word-wrap:break-word"><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">Dear community,</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto"><br></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">While using ‘guard’ with much appreciation, I noticed a few cases where I would of hoped for better and more concise code.</div><div><br></div>As of now, you receive a compiler error if your guard statement does not provide an ending statement such as return/break/etc. at the end. <div>It is informative, but in many cases such a statement makes the code repetitive and less concise.</div><div><br></div><div>As an example of cases where there are multiple guards done sequentially to avoid very nested and unclear ‘if&#39;s:</div><div><br></div><div>guard let resp = response as? HTTPURLResponse else {</div><div>    failure(…)</div><div>    return</div><div>}</div><div><br></div><div>guard let  resp.statusCode == 200 else {</div><div>    failure(…)</div><div>    return</div><div>}</div><div><br></div><div>guard let respData = data else {</div><div>    failure(…)</div><div>    return</div><div>}</div><div><br></div><div>guard let res = parse(respData) else {</div><div>    failure(…)</div><div>    return</div><div>}</div><div><br></div><div>success(…)</div><div><br></div><div>As you can see in this example, while the different failures can (and should) provide different information for completion, we always have to add a repetitive return after them.</div><div><br></div><div>My proposal is to allow for an implicit return when no ending statement is provided. We could take this one step further and have the compiler aware of it’s most inner scope and see if it is a while loop for example and implicitly allow a break. But I think at least as a first step, by having an implicit “return” we are saving the repetitiveness on many cases where there are multiple guard statements and the return from them is obvious.</div><div><br></div><div>This goes along the line of the Swift “switch” statement, which doesn’t follow it’s predecessors and force a “break” but rather it is already implicitly there.</div><div><br></div><div>If this proposal is too much of a leap, an alternative is to allow an implicit return but provide a warning (not an error). This warning can be suppressed using an @implicitreturn prefix to the guard statement or something along those lines (@implicitreturn guard a = b else { print(“foo”) } ).</div><div><br></div><div>Glad to hear your thoughts on the matter.</div><div><br></div><div>Best,</div><div>Yarden</div><div><div id="bloop_sign_1466402833378501888" class="bloop_sign"><div style="font-family:helvetica,arial;font-size:13px"><br></div></div></div></body></html>