Skip to content

Commit

Permalink
Add the equivalent of concatMap
Browse files Browse the repository at this point in the history
  • Loading branch information
denizcoskun committed Nov 29, 2020
1 parent eee5c9c commit 6aef4c5
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Data/operators.csv
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ catchErrorJustReturn,replaceError(with:),
combineLatest,"combineLatest, tryCombineLatest",
compactMap,"compactMap, tryCompactMap",
concat,"append, prepend",
concatMap,❌,
concatMap,flatMap(maxPublishers: .max(1)), Set maxPublishers to 1 so that there is only one subscription at a time
create,❌,Apple removed AnyPublisher with a closure in Xcode 11 beta 3 :-(
debounce,debounce,
debug,print,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ It's based on the following blog post: [https://medium.com/gett-engineering/rxsw
| combineLatest | combineLatest, tryCombineLatest | |
| compactMap | compactMap, tryCompactMap | |
| concat | append, prepend | |
| concatMap | | |
| concatMap | flatMap(maxPublishers: .max(1)) | Set maxPublishers to 1 so that there is only one subscription at a time |
| create || Apple removed AnyPublisher with a closure in Xcode 11 beta 3 :-( |
| debounce | debounce | |
| debug | print | |
Expand Down
Binary file modified Resources/basics.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/core_components.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Resources/operators.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6aef4c5

Please sign in to comment.