<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I've noticed that e.g. String is not bridged to NSString. The expected workaround seems to be calling .bridge() everywhere.<div class=""><br class=""></div><div class="">1. Is there a plan for bridging e.g. String with NSString?</div><div class="">2. Would it be appropriate to PR in the meantime e.g.</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class="">extension String {</div><div class=""> public func cStringUsingEncoding(encoding: UInt) -> UnsafePointer<Int8> {</div><div class=""> return self.bridge().cStringUsingEncoding(encoding)</div><div class=""> }</div><div class=""> }</div></blockquote><br class=""><div class=""> 3. The README also says</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><blockquote type="cite" class="">We will also drop the 'NS' prefix from all Foundation classes</blockquote></div></blockquote><div class=""><br class=""></div><div class="">...is <b class="">that</b> the resolution? e.g what is currently <b class="">class NSString</b> will become instead <b class="">extension String</b>? Is there a bug open for that?</div></body></html>