@@ -136,8 +136,8 @@ extension UnsafeMutableBufferPointer {
136
136
+++ func update <C >(fromContentsOf source : C) -> Index where C: Collection , C.Element == Element
137
137
+++ func moveInitialize (fromContentsOf source : UnsafeMutableBufferPointer ) -> Index
138
138
+++ func moveInitialize (fromContentsOf source : Slice <UnsafeMutableBufferPointer >) -> Index
139
- +++ func moveUpdate (fromContentsOf source : ` Self ` ) -> Index
140
- +++ func moveUpdate (fromContentsOf source : Slice <` Self ` >) -> Index
139
+ +++ func moveUpdate (fromContentsOf source : Self ) -> Index
140
+ +++ func moveUpdate (fromContentsOf source : Slice <Self >) -> Index
141
141
+++ func deinitialize () -> UnsafeMutableRawBufferPointer
142
142
143
143
+++ func initializeElement (at index : Index , to value : Element )
@@ -512,7 +512,7 @@ extension UnsafeMutableBufferPointer {
512
512
/// The memory region underlying `source` must be initialized. The
513
513
/// memory regions referenced by `source` and this pointer must not overlap.
514
514
/// - Returns: An index one past the index of the last element updated.
515
- public func moveUpdate (fromContentsOf source : ` Self ` ) -> Index
515
+ public func moveUpdate (fromContentsOf source : Self ) -> Index
516
516
517
517
/// Updates this buffer's initialized memory initialized memory by
518
518
/// moving every element from the source buffer slice,
@@ -536,7 +536,7 @@ extension UnsafeMutableBufferPointer {
536
536
/// The memory region underlying `source` must be initialized. The
537
537
/// memory regions referenced by `source` and this pointer must not overlap.
538
538
/// - Returns: An index one past the index of the last element updated.
539
- public func moveUpdate (fromContentsOf source : Slice <` Self ` >) -> Index
539
+ public func moveUpdate (fromContentsOf source : Slice <Self >) -> Index
540
540
541
541
/// Deinitializes every instance in this buffer.
542
542
///
0 commit comments