Commit 7bb523e 1 parent 3a973c8 commit 7bb523e Copy full SHA for 7bb523e
File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
A collection of Combine extensions featuring:
4
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
5
- ** Operators**
11
6
- ` flatMapLatest ` : Transforms elements into publishers, republishing values from the most recent inner publisher while canceling previous ones.
12
7
- ` withPrevious ` : Emits tuples of the current and previous elements.
8
+
9
+ - ** ` CurrentValuePublisher ` **
10
+ - An immutable alternative to ` CurrentValueSubject ` .
11
+ - Bridges seamlessly with ` CurrentValueSubject ` and the ` @Published ` property wrapper for integration with ` ObservableObject ` .
12
+ - Includes custom operator overloads that return instances of ` CurrentValuePublisher ` , which are applied to both current and future values.
13
+ - Support for the ` flatMapLatest ` operator, enabling nested publisher chaining while ensuring only the most recent publisher remains active.
14
+ - Adds support for creating a ` CurrentValuePublisher ` from a KVO-compliant property on ` NSObject ` .
You can’t perform that action at this time.
0 commit comments