Remove {Dictionary,Set,UnsafeMutableBufferPointer,UnsafeBufferPointer}.count

These APIs are redundant with APIs that come from protocol extensions.

Swift SVN r28248
This commit is contained in:
Dmitri Hrybenko
2015-05-07 00:30:43 +00:00
parent 58601fafc8
commit 8ac6c7cf8f
21 changed files with 315 additions and 316 deletions

View File

@@ -119,7 +119,7 @@ class NonContiguousNSString : NSString {
}
@objc override var length: Int {
return _value.count
return _value.count()
}
@objc override func characterAtIndex(index: Int) -> unichar {