<html><head><style>
body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding:1em;
        margin:auto;
        background:#fefefe;
}

h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
}

h1 {
        color: #000000;
        font-size: 28pt;
}

h2 {
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
        font-size: 24px;
}

h3 {
        font-size: 18px;
}

h4 {
        font-size: 16px;
}

h5 {
        font-size: 14px;
}

h6 {
        color: #777777;
        background-color: inherit;
        font-size: 14px;
}

hr {
        height: 0.2em;
        border: 0;
        color: #CCCCCC;
        background-color: #CCCCCC;
    display: inherit;
}

p, blockquote, ul, ol, dl, li, table, pre {
        margin: 15px 0;
}

a, a:visited {
        color: #4183C4;
        background-color: inherit;
        text-decoration: none;
}

#message {
        border-radius: 6px;
        border: 1px solid #ccc;
        display:block;
        width:100%;
        height:60px;
        margin:6px 0px;
}

button, #ws {
        font-size: 12 pt;
        padding: 4px 6px;
        border-radius: 5px;
        border: 1px solid #bbb;
        background-color: #eee;
}

code, pre, #ws, #message {
        font-family: Monaco;
        font-size: 10pt;
        border-radius: 3px;
        background-color: #F8F8F8;
        color: inherit;
}

code {
        border: 1px solid #EAEAEA;
        margin: 0 2px;
        padding: 0 5px;
}

pre {
        border: 1px solid #CCCCCC;
        overflow: auto;
        padding: 4px 8px;
}

pre > code {
        border: 0;
        margin: 0;
        padding: 0;
}

#ws { background-color: #f8f8f8; }


.bloop_markdown table {
border-collapse: collapse;  
font-family: Helvetica, arial, freesans, clean, sans-serif;  
color: rgb(51, 51, 51);  
font-size: 15px; line-height: 25px;
padding: 0; }

.bloop_markdown table tr {
border-top: 1px solid #cccccc;
background-color: white;
margin: 0;
padding: 0; }
     
.bloop_markdown table tr:nth-child(2n) {
background-color: #f8f8f8; }

.bloop_markdown table tr th {
font-weight: bold;
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr td {
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr th :first-child, table tr td :first-child {
margin-top: 0; }

.bloop_markdown table tr th :last-child, table tr td :last-child {
margin-bottom: 0; }

.bloop_markdown blockquote{
  border-left: 4px solid #dddddd;
  padding: 0 15px;
  color: #777777; }
  blockquote > :first-child {
    margin-top: 0; }
  blockquote > :last-child {
    margin-bottom: 0; }

code, pre, #ws, #message {
    word-break: normal;
    word-wrap: normal;
}

hr {
    display: inherit;
}

.bloop_markdown :first-child {
    -webkit-margin-before: 0;
}

code, pre, #ws, #message {
    font-family: Menlo, Consolas, Liberation Mono, Courier, monospace;
}


.send { color:#77bb77; }
.server { color:#7799bb; }
.error { color:#AA0000; }</style></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="bloop_markdown"><p>True story, I know someone who’s from C# background and I’m looking at swift code that looks like this all the time T_T:</p>

<pre><code class="swift">
class SomeName  
{
    private var _variableName : String!;
    private var _optionalName : SomeType?;
     
    func notAnInitializer()
    {
        _variableName = "ugly code";
         
        if _optionalName != nil
        {
            _optionalName!.doSomething();
        }  
        else
        {
            _optionalName = SomeType();
            _optionalName!.doSomething();
        }
    }
}
</code></pre>

<p>This is embarrassing and ugly.</p>

<p>I’d rewrite this to:</p>

<pre><code class="swift">class SomeName {
     
    private var _variableName: String
    private var _optionalName: SomeType?
     
    func notAnInitializer() {
         
        self._variableName = "ugly code"
         
        if self._optionalName == nil {
             
            self._optionalName = SomeType()
        }
         
        self._optionalName?.doSomething()
    }
}
</code></pre>

<p>My personal preference is to leave an empty line at the top (for readability from my personal prospective) and I do prefer <code>self.</code> for clarity what I’m accessing and from where it comes from.</p>

<p></p></div><div class="bloop_original_html"><style>body{font-family:Helvetica,Arial;font-size:13px}</style><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> <br> <div id="bloop_sign_1466611601860680192" class="bloop_sign"><div style="font-family:helvetica,arial;font-size:13px">--&nbsp;<br>Adrian Zubarev<br>Sent with Airmail</div></div> <br><p class="airmail_on">Am 22. Juni 2016 um 17:21:49, Charlie Monroe (<a href="mailto:charlie@charliemonroe.net">charlie@charliemonroe.net</a>) schrieb:</p> <blockquote type="cite" class="clean_bq"><span><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div></div><div>



<title></title>


<br class="">
<div>
<blockquote type="cite" class="">
<div class="">On Jun 22, 2016, at 5:07 PM, Erica Sadun via
swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div>
<br class="Apple-interchange-newline">
<div class="">

<div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class="">
<div class="">
<blockquote type="cite" class="">
<div class="">On Jun 22, 2016, at 8:36 AM, Adrian Zubarev via
swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div class="bloop_markdown" style="font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(254, 254, 254);">
<p style="margin: 15px 0px; -webkit-margin-before: 0px;" class="">
I’d love to see something like this happen to Xcode. I’m curious if
we could write an extension for Xcode 8 to refactor code to at
least some of the conventions.<span class="Apple-converted-space">&nbsp;</span></p>
</div>
</div>
</blockquote>
</div>
<div class="">I don't believe these rules have a place in the API
guidelines</div>
</div>
</div>
</blockquote>
<div><br class=""></div>
<div>No, not API guidelines per se, but code-style guidelines. I
think for the sake of a more unified code-style, given the team's
strong position on not allowing any language dialects, I'd suggest
something like this being put together. (Yes, I understand that a
language dialect is something different, but the point is that
there is a strong feeling about a unified languaged.)</div>
<div><br class=""></div>
<div>When you look at various code in ObjC (StackOverfow, Github),
the code styles vary incredibly and it's a mess, looking at some
code gives you a headache because it is obvious that the person who
wrote it came from C# environment. Yes, it's up to the project's
team to decide on some minor things (e.g. whether to go by the
80-char per line limit, use explicit self, etc.), but the major
things, such as placement of brackets, colons, spaces between them,
etc. should be standardized.</div>
<div><br class=""></div>
<div>Because currently, as Ben has pointed out, the standard
library has a different code-style than the Swift Programming
Language or the WWDC presentation and it will diversify over the
time.</div>
<div><br class=""></div>
<div>I kind of really like what Microsoft has done with C# - their
coding conventions are out there, clear and precise.</div>
<div><br class=""></div>
<div><a href="https://msdn.microsoft.com/en-us/library/ff926074.aspx?f=255&amp;MSPPError=-2147217396" class="">https://msdn.microsoft.com/en-us/library/ff926074.aspx?f=255&amp;MSPPError=-2147217396</a></div>
<div><br class=""></div>
<div>You may ask why would one care? Aside from me being kind of a
nitpicker in this area, this is nice when you share code between
projects - you have a single code-style even if you share the
code.</div>
<div><br class=""></div>
<br class="">
<blockquote type="cite" class="">
<div class="">
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div class="">, which are meant to address how Swifty APIs should
be constructed for consumption. &nbsp;Style rules are best
addressed by in-house style guides. I've personally adopted
left-magnetic colons. This follows the Docs team style. The stdlib
folk appear to use floating colons for protocol conformance.</div>
<div class=""><br class=""></div>
<div class="">
<div class="">As for Xcode, the new code editor extensions provide
exactly this kind of functionality.&nbsp;</div>
<div class=""><br class=""></div>
</div>
<div class="">-- E</div>
</div>
_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">
https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div>
</blockquote>
</div>
<br class="">


</div></div></span></blockquote></div><div class="bloop_markdown"><p></p></div></body></html>