Skip to content

Commit eee5c9c

Browse files
vzsgfreak4pc
authored andcommittedSep 15, 2020
Add take(n)/prefix(n) operator to the table
1 parent b86fd44 commit eee5c9c

File tree

5 files changed

+2
-0
lines changed

5 files changed

+2
-0
lines changed
 

‎Data/operators.csv

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ skipWhile,"drop(while:), tryDrop(while:)",
5959
startWith,prepend,
6060
subscribe,sink,
6161
subscribeOn,subscribe(on:),"RxSwift uses Schedulers. Combine uses RunLoop, DispatchQueue, and OperationQueue."
62+
take(1),prefix(1),
6263
takeLast,last,
6364
takeUntil,prefix(untilOutputFrom:),
6465
throttle,throttle,

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ It's based on the following blog post: [https://medium.com/gett-engineering/rxsw
107107
| startWith | prepend | |
108108
| subscribe | sink | |
109109
| subscribeOn | subscribe(on:) | RxSwift uses Schedulers. Combine uses RunLoop, DispatchQueue, and OperationQueue. |
110+
| take(1) | prefix(1) | |
110111
| takeLast | last | |
111112
| takeUntil | prefix(untilOutputFrom:) | |
112113
| throttle | throttle | |

‎Resources/basics.jpg

25.1 KB
Loading

‎Resources/core_components.jpg

78.3 KB
Loading

‎Resources/operators.jpg

158 KB
Loading

0 commit comments

Comments
 (0)
Failed to load comments.