Skip to content

Add recursiveMap(_:) methods #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
27f397a
add recursiveMap methods
SusanDoggie Mar 27, 2022
79b0aae
Create TestRecursiveMap.swift
SusanDoggie Mar 27, 2022
84cccba
add document
SusanDoggie Mar 28, 2022
eaff804
Update README.md
SusanDoggie Mar 28, 2022
38199a0
rename
SusanDoggie Mar 28, 2022
6774fc6
Update Effects.md
SusanDoggie Mar 28, 2022
5d63ffe
add TraversalOption
SusanDoggie Mar 28, 2022
de6e51b
Update TestRecursiveMap.swift
SusanDoggie Mar 28, 2022
e01a2ae
immutable
SusanDoggie Mar 28, 2022
a9fffdd
add closure throws test
SusanDoggie Mar 28, 2022
db8f025
documentation
SusanDoggie Mar 28, 2022
4aebd4c
fix the missing Sendable
SusanDoggie Mar 28, 2022
80cd630
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
edeeffd
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
8588e71
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
c7e313e
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
7f0afd0
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
2f398cf
Update RecursiveMap.md
SusanDoggie Mar 28, 2022
5135e3d
test all route of throws
SusanDoggie Mar 28, 2022
fd31319
Merge branch 'patch-1' of https://github.com/SusanDoggie/swift-async-…
SusanDoggie Mar 28, 2022
179c924
Merge branch 'main'
SusanDoggie Apr 19, 2022
864bd80
move file
SusanDoggie Apr 19, 2022
9f43c56
Create NNN-recursiveMap.md
SusanDoggie Apr 19, 2022
8ecc2fb
Update NNN-recursiveMap.md
SusanDoggie Apr 19, 2022
25f855f
Update NNN-recursiveMap.md
SusanDoggie Apr 19, 2022
a669b68
Update NNN-recursiveMap.md
SusanDoggie Apr 19, 2022
2e05d91
Update NNN-recursiveMap.md
SusanDoggie Apr 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Effects.md
  • Loading branch information
SusanDoggie committed Mar 28, 2022
commit 6774fc697619584494bec589d4e36f18facba59c
4 changes: 4 additions & 0 deletions Guides/Effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
| `AsyncMerge2Sequence.Iterator` | rethrows | Sendable |
| `AsyncMerge3Sequence` | rethrows | Sendable |
| `AsyncMerge3Sequence.Iterator` | rethrows | Sendable |
| `AsyncRecursiveMapSequence` | rethrows | Conditional |
| `AsyncRecursiveMapSequence.Iterator` | rethrows | Conditional |
| `AsyncRemoveDuplicatesSequence` | rethrows | Conditional |
| `AsyncRemoveDuplicatesSequence.Iterator` | rethrows | Conditional |
| `AsyncThrottleSequence` | rethrows | Conditional |
Expand All @@ -50,6 +52,8 @@
| `AsyncThrowingExclusiveReductionsSequence.Iterator` | throws | Conditional |
| `AsyncThrowingInclusiveReductionsSequence` | throws | Conditional |
| `AsyncThrowingInclusiveReductionsSequence.Iterator` | throws | Conditional |
| `AsyncThrowingRecursiveMapSequence` | throws | Conditional |
| `AsyncThrowingRecursiveMapSequence.Iterator` | throws | Conditional |
| `AsyncTimerSequence` | non-throwing | Sendable |
| `AsyncTimerSequence.Iterator` | non-throwing | Sendable |
| `AsyncZip2Sequence` | rethrows | Sendable |
Expand Down