@@ -274,7 +274,7 @@ extension MultiProducerSingleConsumerChannel {
274
274
/// - Returns: The result that indicates if more elements should be produced at this time.
275
275
@inlinable
276
276
public mutating func send< S> (
277
- contentsOf sequence: consuming sendingS
277
+ contentsOf sequence: consuming sending S
278
278
) throws -> SendResult where Element == S . Element , S: Sequence , Element: Copyable {
279
279
try self . _storage. send ( contentsOf: sequence)
280
280
}
@@ -288,7 +288,7 @@ extension MultiProducerSingleConsumerChannel {
288
288
/// - Parameter element: The element to send to the channel.
289
289
/// - Returns: The result that indicates if more elements should be produced at this time.
290
290
@inlinable
291
- public mutating func send( _ element: consuming sendingElement ) throws -> SendResult {
291
+ public mutating func send( _ element: consuming sending Element ) throws -> SendResult {
292
292
try self . _storage. send ( contentsOf: CollectionOfOne ( element) )
293
293
}
294
294
@@ -334,7 +334,7 @@ extension MultiProducerSingleConsumerChannel {
334
334
/// invoked during the call to ``send(contentsOf:onProduceMore:)``.
335
335
@inlinable
336
336
public mutating func send< S> (
337
- contentsOf sequence: consuming sendingS ,
337
+ contentsOf sequence: consuming sending S ,
338
338
onProduceMore: @escaping @Sendable ( Result < Void , Error > ) -> Void
339
339
) where Element == S . Element , S: Sequence , Element: Copyable {
340
340
do {
@@ -364,7 +364,7 @@ extension MultiProducerSingleConsumerChannel {
364
364
/// invoked during the call to ``send(_:onProduceMore:)``.
365
365
@inlinable
366
366
public mutating func send(
367
- _ element: consuming sendingElement ,
367
+ _ element: consuming sending Element ,
368
368
onProduceMore: @escaping @Sendable ( Result < Void , Error > ) -> Void
369
369
) {
370
370
do {
@@ -394,9 +394,9 @@ extension MultiProducerSingleConsumerChannel {
394
394
/// - sequence: The elements to send to the channel.
395
395
@inlinable
396
396
public mutating func send< S> (
397
- contentsOf sequence: consuming sendingS
397
+ contentsOf sequence: consuming sending S
398
398
) async throws where Element == S . Element , S: Sequence , Element: Copyable {
399
- let syncSend : ( sending S, inout sendingSelf ) throws -> SendResult = { try $1. send ( contentsOf: $0) }
399
+ let syncSend : ( sending S, inout sending Self ) throws -> SendResult = { try $1. send ( contentsOf: $0) }
400
400
let sendResult = try syncSend ( sequence, & self )
401
401
402
402
switch consume sendResult {
@@ -430,8 +430,8 @@ extension MultiProducerSingleConsumerChannel {
430
430
/// - Parameters:
431
431
/// - element: The element to send to the channel.
432
432
@inlinable
433
- public mutating func send( _ element: consuming sendingElement ) async throws {
434
- let syncSend : ( consuming sendingElement , inout sendingSelf ) throws -> SendResult = { try $1. send ( $0) }
433
+ public mutating func send( _ element: consuming sending Element ) async throws {
434
+ let syncSend : ( consuming sending Element , inout sending Self ) throws -> SendResult = { try $1. send ( $0) }
435
435
let sendResult = try syncSend ( element, & self )
436
436
437
437
switch consume sendResult {
@@ -463,7 +463,7 @@ extension MultiProducerSingleConsumerChannel {
463
463
/// - Parameters:
464
464
/// - sequence: The elements to send to the channel.
465
465
@inlinable
466
- public mutating func send< S> ( contentsOf sequence: consuming sendingS ) async throws
466
+ public mutating func send< S> ( contentsOf sequence: consuming sending S ) async throws
467
467
where Element == S . Element , S: AsyncSequence , Element: Copyable , S: Sendable , Element: Sendable {
468
468
for try await element in sequence {
469
469
try await self . send ( contentsOf: CollectionOfOne ( element) )
0 commit comments