Skip to content

Commit 552856a

Browse files
committed
License headers
1 parent ba30f20 commit 552856a

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.license_header_template

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
@@===----------------------------------------------------------------------===@@

.licenseignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

Sources/AsyncAlgorithms/AsyncInclusiveReductionsSequence.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
extension AsyncSequence {
213
/// Returns an asynchronous sequence containing the accumulated results of combining the
314
/// elements of the asynchronous sequence using the given closure.

0 commit comments

Comments
 (0)