stdlib: move the bulk of SequenceType algorithms to protocol extensions

rdar://19895265

Swift SVN r27269
This commit is contained in:
Dmitri Hrybenko
2015-04-14 01:53:19 +00:00
parent 272371a3f5
commit d267b86cb6
24 changed files with 3235 additions and 809 deletions

View File

@@ -2168,7 +2168,9 @@ class NonContiguousNSString : NSString {
func checkUTF8View(expected: [UInt8], subject: String,
stackTrace: SourceLocStack) {
checkCollection(expected, subject.utf8, stackTrace.withCurrentLoc())
checkForwardCollection(
expected, subject.utf8,
stackTrace.withCurrentLoc())
}
func checkUTF16View(expected: [UInt16], subject: String,