<div dir="ltr">Can you show some examples where and why you use not-Int types and this is a problem? What you&#39;re suggesting will be a burden to those of us who need bitwise optimizations or work with C APIs.<div><br></div><div>My last week was spent reading files with huffman coding. So I had no choice but to use bitwise operations. My experience is that Swift got this right (except for &quot;<span style="font-size:13px">truncatingBitPattern&quot; taking up 25% of an 80 column line).</span></div><div><span style="font-size:13px"><br></span></div><div>So my question is, &quot;why are you not using Int?&quot; There&#39;s plenty of use cases, you just haven&#39;t stated yours so we can&#39;t understand why the current system is failing you.</div><div><span style="font-size:13px"><br></span></div><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"><span style="font-size:13px">Safety does not mean you can easily write code that crashes once it is deployed….</span></blockquote><div><span style="font-size:13px"><br></span></div><div>var a = [Int](); a[0]=99</div><div><br></div><div>That was pretty easy. I don&#39;t buy into this argument. If you don&#39;t want an out of bounds error, you either make sure you don&#39;t math your way out of bounds or you check every time before you subscript. I don&#39;t see why an integer conversion should be any different.</div><div><br></div><div>-david</div></div>