Add share, flatMapLatest, and reductions to the README algorithm catalog - #443
Open
MUSE-CODE-SPACE wants to merge 1 commit into
Open
Add share, flatMapLatest, and reductions to the README algorithm catalog#443MUSE-CODE-SPACE wants to merge 1 commit into
share, flatMapLatest, and reductions to the README algorithm catalog#443MUSE-CODE-SPACE wants to merge 1 commit into
Conversation
FranzBusch
approved these changes
Jul 14, 2026
MUSE-CODE-SPACE
force-pushed
the
docs/readme-missing-algorithms
branch
from
July 14, 2026 13:06
a0eef77 to
4d0d496
Compare
Author
|
Force-pushed to amend the commit message only (removed a stray tooling attribution trailer) — the diff is unchanged. This also re-triggers CI, where the previous run hit an unrelated infra failure installing the Wasm Swift SDK (segfault on first attempt, then "bundle already installed" on retries). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #408, fixes #379.
The README's Contents section is the primary discovery surface for the package, but three shipped public APIs are missing from it even though each has a full DocC guide:
share(bufferingPolicy:)—Guides/Share.md(the gap reported in both issues; users have assumed the feature doesn't exist)flatMapLatest(_:)—Guides/FlatMapLatest.mdreductions(_:_:)—Guides/Reductions.mdThis audits the catalog against
Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/(as #408 requests) and adds the three missing entries to the "Other useful asynchronous sequences" section, with one-line descriptions taken from each guide. All three arepubliconmain(AsyncShareSequence.swift,FlatMapLatest/AsyncFlatMapLatestSequence.swift,AsyncInclusiveReductionsSequence.swift). Every other guide in the directory is already listed.Note: a previous PR for the
shareentry alone (#401) was closed by its author after going unreviewed; this supersedes it and covers the full audit.