stdlib: add first argument labels and some other changes to conform to API guidelines

This commit is contained in:
Dmitri Gribenko
2016-02-12 16:59:15 -08:00
parent a558d13a3b
commit efaa39ea79
132 changed files with 1653 additions and 1592 deletions

View File

@@ -61,7 +61,7 @@ internal struct _CocoaArrayWrapper : Collection {
return contiguousCount >= subRange.endIndex
? unsafeBitCast(
enumerationState.itemsPtr, UnsafeMutablePointer<AnyObject>.self
enumerationState.itemsPtr, to: UnsafeMutablePointer<AnyObject>.self
) + subRange.startIndex
: nil
}