We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad4fed commit 5fb5a72Copy full SHA for 5fb5a72
stdlib/public/core/SIMDVector.swift
@@ -770,7 +770,7 @@ extension SIMD where Scalar: FixedWidthInteger {
770
/// Returns the sum of the scalars in the vector, computed with wrapping
771
/// addition.
772
///
773
- /// Equivalent to indices.reduce(into: 0) { $0 &+= self[$1] }.
+ /// Equivalent to `indices.reduce(into: 0) { $0 &+= self[$1] }`.
774
@_alwaysEmitIntoClient
775
public func wrappedSum() -> Scalar {
776
return indices.reduce(into: 0) { $0 &+= self[$1] }
0 commit comments