<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>You’ve got two things wrong there:</p>

<ol>
<li><code>Derived: Base</code> otherwise you cannot cast at all.</li>
<li><code>w === x //=&gt; FALSE</code></li>
</ol>

<p>The reason why this does not work is because it’s impossible to cast a type to an different type with the help of an initializer. As I cleaned up the current implementation I though about replacing <code>init?(casting: Type&lt;T&gt;?)</code> with something like this:</p>

<pre><code class="swift">public static func cast&lt;U&gt;(from optionalType: Type&lt;U&gt;?) -&gt; Type&lt;T&gt;? {
         
        guard let otherType = optionalType else { return nil }
         
        // Check if we can up- or downcast the metatype from `otherType` to `Metatype&lt;T&gt;`
         
        // Bug: SR-2085
        // Workaround: Check explicitly if `T` is `Any`
        //
        // let isTAny = _uniqueIdentifierOf(Any.metatype) == _uniqueIdentifierOf(T.metatype)
        // guard isTAny || otherType._metatype is Metatype&lt;T&gt; else {
        //      return nil
        // }
         
        guard otherType._metatype is Metatype&lt;T&gt; else {
            return nil
        }
        // `T` implicitly converted to `Type&lt;T&gt;()`
        return unsafeBitCast(otherType, to: T)
}
</code></pre>

<p>Your example would become this:</p>

<pre><code class="swift">let x = Type&lt;Derived&gt;()

// downcast
let y = Type&lt;Base&gt;.cast(from: x)!

y === x //=&gt; true

// this is safe - upcast
let z = unsafeBitCast(y, to: Type&lt;Derived&gt;())

z === y //=&gt; true
z === x //=&gt; true

let w = Type&lt;Derived&gt;.cast(from: y)!

w === x //=&gt; true
w === y //=&gt; true
w === z //=&gt; true
</code></pre>

<p>Global dictionary is not involved here at all. We can change this too and put the reference for all different <code>Type&lt;T&gt;</code> into the dictionary from the designated initializer.</p>

<p>Remember that the global dictionary does only contain unique (dynamic) types, which means we could have this.</p>

<p><code>[1: Type&lt;Base&gt;(), 2: Type&lt;Derived&gt;()]</code></p>

<ul>
<li><p><code>Type&lt;Derived&gt;.sharedInstance</code> will give you (2) which you can downcast to <code>Base</code> or <code>Any</code></p>

<ul>
<li>The reference will remain pointing to (2) in the global dictionary, which is the correct behavior.</li>
</ul></li>
<li><p><code>Type&lt;Base&gt;.sharedInstance</code> will give you (1) which you only can downcast to <code>Any</code> but not upcast to <code>Derived</code></p></li>
</ul>

<p>The reason for this is the (dynamic) metatype inside each <code>Type&lt;T&gt;</code> instance.</p>

<p>Here is an example how it works in Swift 2.2:</p>

<pre><code class="swift">class Base&nbsp;{}
class Derived: Base {}

let baseMetatype = Base.self
(baseMetatype is Base.Type) == true
(baseMetatype is Any.Type) == true
(baseMetatype is Derived.Type) == false

let derivedMetatype = Derived.self
(derivedMetatype is Base.Type) == true
(derivedMetatype is Any.Type) == true
(derivedMetatype is Derived.Type) == true
</code></pre>

<p>Problem solved? Lets tackle next one.</p>

<p>PS: I removed <code>_identifier</code> because now <code>_metatype</code> does the most work.</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_1468596267880691968" 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 15. Juli 2016 um 17:12:29, Anton Zhilin (<a href="mailto:antonyzhilin@gmail.com">antonyzhilin@gmail.com</a>) schrieb:</p> <blockquote type="cite" class="clean_bq"><span><div><div class="gmail_quote" style="color: rgb(0, 0, 0); font-family: 'helvetica Neue', helvetica; font-size: 14px; 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;"><div>Here you are, full example:<br></div><br><div><font face="monospace, monospace">let x = Type&lt;Derived&gt;()</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">// Type&lt;Derived&gt; is not a subtype of Type&lt;Base&gt;, we must construct a new instance of Type&lt;Base&gt;</font></div><div><font face="monospace, monospace">let y = Type&lt;Base&gt;(casting:&nbsp;</font><span style="font-family: monospace, monospace;">x</span><font face="monospace, monospace">)!</font></div><div><font face="monospace, monospace"><br></font></div><div><span style="font-family: monospace, monospace;">y === x //=&gt; false</span><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">// Type&lt;T&gt; are reference types. z will point to the same instance as y</font></div><div><font face="monospace, monospace">let z = unsafeBitCast(y, to: Type&lt;Derived&gt;())</font></div></div><div class="gmail_quote" style="color: rgb(0, 0, 0); font-family: 'helvetica Neue', helvetica; font-size: 14px; 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;"><br><div><font face="monospace, monospace">z === y //=&gt; true</font></div><div><font face="monospace, monospace">z === x //=&gt; false</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">// Static and dynamic types are equal here, so we decide to draw from global dictionary</font></div><div><font face="monospace, monospace">let w = Type&lt;Derived&gt;(casting: y)!</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">w === x //=&gt; true</font></div><div><font face="monospace, monospace">w === y //=&gt; false</font></div><div><font face="monospace, monospace">w === z //=&gt; false</font></div></div></div></span></blockquote></div><div class="bloop_markdown"><p></p></div></body></html>