File: AsyncExclusiveReductionsSequence.swift

package info (click to toggle)
swiftlang 6.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 2,791,644 kB
  • sloc: cpp: 9,901,738; ansic: 2,201,433; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (117 lines) | stat: -rw-r--r-- 4,486 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Async Algorithms open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
//
//===----------------------------------------------------------------------===//

extension AsyncSequence {
  /// Returns an asynchronous sequence containing the accumulated results of combining the
  /// elements of the asynchronous sequence using the given closure.
  ///
  /// This can be seen as applying the reduce function to each element and
  /// providing the initial value followed by these results as an asynchronous sequence.
  ///
  /// - Parameters:
  ///   - initial: The value to use as the initial value.
  ///   - transform: A closure that combines the previously-reduced result and
  ///     the next element in the receiving asynchronous sequence, which it returns.
  /// - Returns: An asynchronous sequence of the initial value followed by the reduced
  ///   elements.
  @inlinable
  public func reductions<Result>(_ initial: Result, _ transform: @Sendable @escaping (Result, Element) async -> Result) -> AsyncExclusiveReductionsSequence<Self, Result> {
    reductions(into: initial) { result, element in
      result = await transform(result, element)
    }
  }
  
  /// Returns an asynchronous sequence containing the accumulated results of combining the
  /// elements of the asynchronous sequence using the given closure.
  ///
  /// This can be seen as applying the reduce function to each element and
  /// providing the initial value followed by these results as an asynchronous sequence.
  ///
  /// - Parameters:
  ///   - initial: The value to use as the initial value.
  ///   - transform: A closure that combines the previously-reduced result and
  ///     the next element in the receiving asynchronous sequence, mutating the
  ///     previous result instead of returning a value.
  /// - Returns: An asynchronous sequence of the initial value followed by the reduced
  ///   elements.
  @inlinable
  public func reductions<Result>(into initial: Result, _ transform: @Sendable @escaping (inout Result, Element) async -> Void) -> AsyncExclusiveReductionsSequence<Self, Result> {
    AsyncExclusiveReductionsSequence(self, initial: initial, transform: transform)
  }
}

/// An asynchronous sequence of applying a transform to the element of an asynchronous sequence and the
/// previously transformed result.
@frozen
public struct AsyncExclusiveReductionsSequence<Base: AsyncSequence, Element> {
  @usableFromInline
  let base: Base
  
  @usableFromInline
  let initial: Element
  
  @usableFromInline
  let transform: @Sendable (inout Element, Base.Element) async -> Void
  
  @inlinable
  init(_ base: Base, initial: Element, transform: @Sendable @escaping (inout Element, Base.Element) async -> Void) {
    self.base = base
    self.initial = initial
    self.transform = transform
  }
}

extension AsyncExclusiveReductionsSequence: AsyncSequence {
  /// The iterator for an `AsyncExclusiveReductionsSequence` instance.
  @frozen
  public struct Iterator: AsyncIteratorProtocol {
    @usableFromInline
    var iterator: Base.AsyncIterator
    
    @usableFromInline
    var current: Element?
    
    @usableFromInline
    let transform: @Sendable (inout Element, Base.Element) async -> Void
    
    @inlinable
    init(_ iterator: Base.AsyncIterator, initial: Element, transform: @Sendable @escaping (inout Element, Base.Element) async -> Void) {
      self.iterator = iterator
      self.current = initial
      self.transform = transform
    }
    
    @inlinable
    public mutating func next() async rethrows -> Element? {
      guard let result = current else { return nil }
      let value = try await iterator.next()
      if let value = value {
        var result = result
        await transform(&result, value)
        current = result
        return result
      } else {
        current = nil
        return nil
      }
    }
  }
  
  @inlinable
  public func makeAsyncIterator() -> Iterator {
    Iterator(base.makeAsyncIterator(), initial: initial, transform: transform)
  }
}

extension AsyncExclusiveReductionsSequence: Sendable where Base: Sendable, Element: Sendable { }

@available(*, unavailable)
extension AsyncExclusiveReductionsSequence.Iterator: Sendable { }