Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 601 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 601 Bytes

CombineExtensions

A collection of Combine extensions featuring:

  • CurrentValuePublisher

    • An immutable alternative to CurrentValueSubject.
    • Bridges seamlessly with CurrentValueSubject and the @Published property wrapper for integration with ObservableObject.
    • Includes custom operator overloads that apply to both current and future values.
  • Operators

    • flatMapLatest: Transforms elements into publishers, republishing values from the most recent inner publisher while canceling previous ones.
    • withPrevious: Emits tuples of the current and previous elements.