@@ -569,7 +569,7 @@ extension _ArrayBuffer {
569
569
570
570
// Superseded by the typed-throws version of this function, but retained
571
571
// for ABI reasons.
572
- @inlinable
572
+ @usableFromInline
573
573
@_silgen_name ( " $ss12_ArrayBufferV010withUnsafeB7Pointeryqd__qd__SRyxGKXEKlF " )
574
574
internal func __abi_withUnsafeBufferPointer< R> (
575
575
_ body: ( UnsafeBufferPointer < Element > ) throws -> R
@@ -585,7 +585,6 @@ extension _ArrayBuffer {
585
585
/// Call `body(p)`, where `p` is an `UnsafeBufferPointer` over the
586
586
/// underlying contiguous storage. If no such storage exists, it is
587
587
/// created on-demand.
588
- @inlinable
589
588
@_alwaysEmitIntoClient
590
589
internal func withUnsafeBufferPointer< R, E> (
591
590
_ body: ( UnsafeBufferPointer < Element > ) throws ( E ) -> R
@@ -600,7 +599,7 @@ extension _ArrayBuffer {
600
599
601
600
// Superseded by the typed-throws version of this function, but retained
602
601
// for ABI reasons.
603
- @inlinable
602
+ @usableFromInline
604
603
@_silgen_name ( " $ss12_ArrayBufferV017withUnsafeMutableB7Pointeryqd__qd__SryxGKXEKlF " )
605
604
internal mutating func __abi_withUnsafeMutableBufferPointer< R> (
606
605
_ body: ( UnsafeMutableBufferPointer < Element > ) throws -> R
@@ -612,7 +611,6 @@ extension _ArrayBuffer {
612
611
/// over the underlying contiguous storage.
613
612
///
614
613
/// - Precondition: Such contiguous storage exists or the buffer is empty.
615
- @inlinable
616
614
@_alwaysEmitIntoClient
617
615
internal mutating func withUnsafeMutableBufferPointer< R, E> (
618
616
_ body: ( UnsafeMutableBufferPointer < Element > ) throws ( E ) -> R
0 commit comments