File tree Expand file tree Collapse file tree 3 files changed +61
-0
lines changed Expand file tree Collapse file tree 3 files changed +61
-0
lines changed Original file line number Diff line number Diff line change
1
+ @@===----------------------------------------------------------------------===@@
2
+ @@
3
+ @@ This source file is part of the Swift Async Algorithms open source project
4
+ @@
5
+ @@ Copyright (c) YEARS Apple Inc. and the Swift project authors
6
+ @@ Licensed under Apache License v2.0 with Runtime Library Exception
7
+ @@
8
+ @@ See https://swift.org/LICENSE.txt for license information
9
+ @@
10
+ @@===----------------------------------------------------------------------===@@
Original file line number Diff line number Diff line change
1
+ .gitignore
2
+ **/.gitignore
3
+ .licenseignore
4
+ .gitattributes
5
+ .mailfilter
6
+ .mailmap
7
+ .spi.yml
8
+ .swift-format
9
+ .editorconfig
10
+ .github/*
11
+ *.md
12
+ *.txt
13
+ *.yml
14
+ *.yaml
15
+ *.json
16
+ Package.swift
17
+ **/Package.swift
18
+ Package@-*.swift
19
+ Package@swift-*.swift
20
+ **/Package@-*.swift
21
+ Package.resolved
22
+ **/Package.resolved
23
+ Makefile
24
+ *.modulemap
25
+ **/*.modulemap
26
+ **/*.docc/*
27
+ *.xcprivacy
28
+ **/*.xcprivacy
29
+ *.symlink
30
+ **/*.symlink
31
+ Dockerfile
32
+ **/Dockerfile
33
+ Snippets/*
34
+ dev/git.commit.template
35
+ *.crt
36
+ **/*.crt
37
+ *.pem
38
+ **/*.pem
39
+ *.der
40
+ **/*.der
Original file line number Diff line number Diff line change
1
+ //===----------------------------------------------------------------------===//
2
+ //
3
+ // This source file is part of the Swift Async Algorithms open source project
4
+ //
5
+ // Copyright (c) 2022 Apple Inc. and the Swift project authors
6
+ // Licensed under Apache License v2.0 with Runtime Library Exception
7
+ //
8
+ // See https://swift.org/LICENSE.txt for license information
9
+ //
10
+ //===----------------------------------------------------------------------===//
11
+
1
12
extension AsyncSequence {
2
13
/// Returns an asynchronous sequence containing the accumulated results of combining the
3
14
/// elements of the asynchronous sequence using the given closure.
You can’t perform that action at this time.
0 commit comments