We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b541a6 commit 4cad333Copy full SHA for 4cad333
1 file changed
README.md
@@ -0,0 +1,12 @@
1
+# CombineExtensions
2
+
3
+A collection of Combine extensions featuring:
4
5
+- **`CurrentValuePublisher`**
6
+ - An immutable alternative to `CurrentValueSubject`.
7
+ - Bridges seamlessly with `CurrentValueSubject` and the `@Published` property wrapper for integration with `ObservableObject`.
8
+ - Includes custom operator overloads that apply to both current and future values.
9
10
+- **Operators**
11
+ - `flatMapLatest`: Transforms elements into publishers, republishing values from the most recent inner publisher while canceling previous ones.
12
+ - `withPrevious`: Emits tuples of the current and previous elements.
0 commit comments