CompositeMiddleware
public struct CompositeMiddleware<State, A, B> : Middleware where State == A.State, A : Middleware, B : Middleware, A.State == B.State
Use the ‘+’ operator to combine two or more middleware together.
-
Unimplemented. It simply calls
store.next(_:)
.Declaration
Swift
@inlinable public func run(store: StoreProxy<State>, action: Action) -> Action?