├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── actions │ ├── daily-perf-improver │ │ └── build-steps │ │ │ └── action.yml │ └── daily-test-improver │ │ └── coverage-steps │ │ └── action.yml └── workflows │ ├── agentics │ ├── build-tools.md │ └── shared │ │ ├── gh-extra-tools.md │ │ ├── include-link.md │ │ ├── job-summary.md │ │ ├── no-push-to-main.md │ │ ├── tool-refused.md │ │ └── xpia.md │ ├── daily-perf-improver.lock.yml │ ├── daily-perf-improver.md │ ├── daily-test-improver.lock.yml │ ├── daily-test-improver.md │ ├── publish.yml │ └── pull-request.yml ├── .gitignore ├── Directory.Build.props ├── FSharp.Control.AsyncSeq.sln ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── docs ├── AsyncSeq.fsx ├── AsyncSeqExamples.fsx ├── ComparisonWithObservable.fsx ├── _template.fsx ├── _template.ipynb ├── img │ └── logo.png ├── index.md └── terminology.md ├── flake.lock ├── flake.nix ├── global.json ├── iterAsyncParallel_cancellation_test.fsx ├── mapAsyncUnorderedParallel_test.fsx ├── src └── FSharp.Control.AsyncSeq │ ├── AsyncSeq.fs │ ├── AsyncSeq.fsi │ └── FSharp.Control.AsyncSeq.fsproj ├── tests ├── FSharp.Control.AsyncSeq.Benchmarks │ ├── AsyncSeqBenchmarks.fs │ ├── FSharp.Control.AsyncSeq.Benchmarks.fsproj │ └── README.md ├── FSharp.Control.AsyncSeq.Tests │ ├── AsyncSeqPerf.fsx │ ├── AsyncSeqTests.fs │ ├── FSharp.Control.AsyncSeq.Tests.fsproj │ └── paket.references └── fable │ ├── FSharp.Control.AsyncSeq.Tests │ ├── AsyncSeq.test.fs │ ├── FSharp.Control.AsyncSeq.Tests.fsproj │ └── paket.references │ ├── babel.config.js │ ├── package-lock.json │ └── package.json └── version.props /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/daily-perf-improver/build-steps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/actions/daily-perf-improver/build-steps/action.yml -------------------------------------------------------------------------------- /.github/actions/daily-test-improver/coverage-steps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/actions/daily-test-improver/coverage-steps/action.yml -------------------------------------------------------------------------------- /.github/workflows/agentics/build-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/build-tools.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/gh-extra-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/gh-extra-tools.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/include-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/include-link.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/job-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/job-summary.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/no-push-to-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/no-push-to-main.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/tool-refused.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/tool-refused.md -------------------------------------------------------------------------------- /.github/workflows/agentics/shared/xpia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/agentics/shared/xpia.md -------------------------------------------------------------------------------- /.github/workflows/daily-perf-improver.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/daily-perf-improver.lock.yml -------------------------------------------------------------------------------- /.github/workflows/daily-perf-improver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/daily-perf-improver.md -------------------------------------------------------------------------------- /.github/workflows/daily-test-improver.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/daily-test-improver.lock.yml -------------------------------------------------------------------------------- /.github/workflows/daily-test-improver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/daily-test-improver.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /FSharp.Control.AsyncSeq.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/FSharp.Control.AsyncSeq.sln -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /docs/AsyncSeq.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/AsyncSeq.fsx -------------------------------------------------------------------------------- /docs/AsyncSeqExamples.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/AsyncSeqExamples.fsx -------------------------------------------------------------------------------- /docs/ComparisonWithObservable.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/ComparisonWithObservable.fsx -------------------------------------------------------------------------------- /docs/_template.fsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_template.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/docs/terminology.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/flake.nix -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/global.json -------------------------------------------------------------------------------- /iterAsyncParallel_cancellation_test.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/iterAsyncParallel_cancellation_test.fsx -------------------------------------------------------------------------------- /mapAsyncUnorderedParallel_test.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/mapAsyncUnorderedParallel_test.fsx -------------------------------------------------------------------------------- /src/FSharp.Control.AsyncSeq/AsyncSeq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/src/FSharp.Control.AsyncSeq/AsyncSeq.fs -------------------------------------------------------------------------------- /src/FSharp.Control.AsyncSeq/AsyncSeq.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi -------------------------------------------------------------------------------- /src/FSharp.Control.AsyncSeq/FSharp.Control.AsyncSeq.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/src/FSharp.Control.AsyncSeq/FSharp.Control.AsyncSeq.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Benchmarks/AsyncSeqBenchmarks.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Benchmarks/AsyncSeqBenchmarks.fs -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Benchmarks/FSharp.Control.AsyncSeq.Benchmarks.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Benchmarks/FSharp.Control.AsyncSeq.Benchmarks.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Benchmarks/README.md -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqPerf.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqPerf.fsx -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Control.AsyncSeq.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/FSharp.Control.AsyncSeq.Tests/paket.references -------------------------------------------------------------------------------- /tests/fable/FSharp.Control.AsyncSeq.Tests/AsyncSeq.test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/FSharp.Control.AsyncSeq.Tests/AsyncSeq.test.fs -------------------------------------------------------------------------------- /tests/fable/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj -------------------------------------------------------------------------------- /tests/fable/FSharp.Control.AsyncSeq.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/FSharp.Control.AsyncSeq.Tests/paket.references -------------------------------------------------------------------------------- /tests/fable/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/babel.config.js -------------------------------------------------------------------------------- /tests/fable/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/package-lock.json -------------------------------------------------------------------------------- /tests/fable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/tests/fable/package.json -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Control.AsyncSeq/HEAD/version.props --------------------------------------------------------------------------------