DevYeom / OneWay

A Swift library for state management with unidirectional data flow.
https://swiftpackageindex.com/DevYeom/OneWay/2.9.0/documentation/oneway
MIT License
78 stars 8 forks source link

Support for result builder in `concat` and `merge` #70

Closed DevYeom closed 9 months ago

DevYeom commented 9 months ago

Related Issues 💭

Description 📝

Additional Notes 📚

.concat {
    .just(.increment)
    .just(.increment)
    if condition {
        .just(.increment)
    }
}

Checklist ✅

DevYeom commented 9 months ago

@sobabear FYI

sobabear commented 9 months ago

Thanks!