| commit | f58a38eaddfa86210fe438d572c6804fd57d0f4a | [log] [tgz] |
|---|---|---|
| author | Byron Ellis <byronellis@google.com> | Thu Oct 05 13:40:10 2023 -0700 |
| committer | Byron Ellis <byronellis@google.com> | Thu Oct 05 13:40:10 2023 -0700 |
| tree | 29920e2a5fe4d8cecd5deb5b342abe2d5307a55e | |
| parent | 6ab52234eadf13bda8ff6e323e185956f7cfaa5f [diff] |
More documentation. Realized that flatMap could just operate on Sequence rather than specifically on arrays so added that.
Provides Apache Beam for Swift.
Add the package dependency in your Package.swift:
.package( url: "https://github.com/apache/beam-swift", .branch("main") )
Next, in your target add ApacheBeam to your dependencies:
.target(name: "MyPipeline",dependencies:[ .product(name:"ApacheBeam",package:"beam-swift"), ],