[stdlib] Various documentation revisions and fixes

- Revisions to unsafeDowncast and withVaList
- Fix the Int64/UInt64 discussion
- Buffer pointer revisions
- Fix Optional example to use new integer methods
- Revise and correct some UnsafeRawBufferPointer docs
- Fix symmetricDifference examples
- Fix wording in FloatingPoint.nextDown
- Update ImplicitlyUnwrappedOptional
- Clarify elementsEqual
- Minor integer doc fixes
- Comment for _AppendKeyPath
- Clarification re collection indices
- Revise RangeExpression.relative(to:)
- Codable revisions
This commit is contained in:
Nate Cook
2017-07-26 20:18:17 -05:00
parent a24a43928a
commit 781f6326bd
15 changed files with 280 additions and 190 deletions

View File

@@ -301,8 +301,8 @@ extension Sequence ${"" if preds else "where Element : Equatable"} {
% if preds:
/// Returns a Boolean value indicating whether this sequence and another
/// sequence contain equivalent elements, using the given predicate as the
/// equivalence test.
/// sequence contain equivalent elements in the same order, using the given
/// predicate as the equivalence test.
///
/// At least one of the sequences must be finite.
///