<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
<div>Can you please add these features in Swift 3?</div><div><br /></div><div>1. The ability to do this:</div><div>extension Array&lt;Double&gt; {</div><div>&nbsp; &nbsp; //extend arrays of doubles</div><div>}</div><div><br /></div><div>2. Generic typealiases:</div><div>struct Foo&lt;T,V&gt; {</div><div>&nbsp; &nbsp; let t: T</div><div>&nbsp; &nbsp; let v: V</div><div>}</div><div>typealias IntFoo&lt;V&gt; = Foo&lt;Int,V&gt; //Error in Swift 2.1</div>  </body>
</html>