| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
FSharp.Control.AsyncSeq is a collection of asynchronous programming utilities for F#.
See the home page for details. The home page can be edited, forked or cloned Please contribute to this project. Don't ask for permission, just fork the repository and send pull requests.
Contributions are warmly welcomed! To get started, fork the repository and create a branch from main. Keep pull requests small and focused on a single concern, and make sure all existing tests pass before submitting (dotnet test). For bug reports, please include a minimal reproduction. For significant new features or breaking changes, consider opening an issue first to discuss the approach with the maintainers. All contributors are expected to follow the F# Software Foundation Code of Conduct.
As of v4.0, AsyncSeq<'T> is a type alias for System.Collections.Generic.IAsyncEnumerable<'T> (the BCL type). This means:
If you called .GetEnumerator() / .MoveNext() directly on an AsyncSeq<'T>, update to .GetAsyncEnumerator(ct) / .MoveNextAsync() (the IAsyncEnumerator<'T> BCL contract). All other AsyncSeq module combinators are unchanged.
The default maintainer account for projects under "fsprojects" is @fsprojectsgit - F# Community Project Incubation Space (repo management)
| Back | FazBrowse Home | New Git URL |