Merge pull request #4259 from natecook1000/nc-fixes-04

[stdlib] Documentation revisions
This commit is contained in:
Ted Kremenek
2016-08-12 21:48:48 -07:00
committed by GitHub
22 changed files with 95 additions and 93 deletions

View File

@@ -137,7 +137,8 @@ public protocol UnicodeCodec {
/// Searches for the first occurrence of a `CodeUnit` that is equal to 0.
///
/// Is an equivalent of `strlen` for C-strings.
/// - Complexity: O(n)
///
/// - Complexity: O(*n*)
static func _nullCodeUnitOffset(in input: UnsafePointer<CodeUnit>) -> Int
}