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 97aad63 commit c914cc7Copy full SHA for c914cc7
stdlib/public/core/UnsafeBufferPointer.swift.gyb
@@ -671,8 +671,10 @@ extension Unsafe${Mutable}BufferPointer {
671
/// - Returns: An iterator to any elements of `source` that didn't fit in the
672
/// buffer, and an index to the next uninitialized element in the buffer.
673
@inlinable // unsafe-performance
674
- public func initialize<S: Sequence>(from source: S) -> (S.Iterator, Index)
675
- where S.Element == Element {
+ @_silgen_name("$sSr10initialize4from8IteratorQyd___Sitqd___t7ElementQyd__RszSTRd__lF")
+ public func initialize<S: Sequence>(
676
+ from source: S
677
+ ) -> (unwritten: S.Iterator, index: Index) where S.Element == Element {
678
return source._copyContents(initializing: self)
679
}
680
0 commit comments