Collection
extension Collection where Element == AfterReducer
                - 
                  
                  
Reduces a collection of
AfterReducerclosures into a singleAfterReducerclosure. Useful when a group of middlewares ran, we collected theirAfterReduceroperations in an Array and now we want to merge everything into a singleAfterReducerclosure to execute all of them once the reducer pipeline has finished and new state is published. The composition will happen in the reversed order of the closures in the array, because we want the first middleware to be the last notified after reducer.Declaration
Swift
@available(*, deprecated, message: "Use `MiddlewareProtocol` instead of `Middleware`. It doesn't use `AfterReducer`. This extension will be removed on 1.0.") public func asAfterReducer() -> AfterReducer 
View on GitHub
        Collection Extension Reference