Structures

The following structures are available globally.

  • An struct wrapping a implementation of ActionReducerType

    See more

    Declaration

    Swift

    public struct ActionReducer<StateType, ActionType> : ActionReducerType where ActionType : Action
  • A substitution wrapper for an instance of ActionReducerType

    See more

    Declaration

    Swift

    public struct AnyActionReducer
  • A substitution wrapper for an instance of ActionReducerType

    See more

    Declaration

    Swift

    public struct AnyAsyncActionReducer
  • An FunctionalReducer, uses a function to take a given action and a given state and return a new state

    See more

    Declaration

    Swift

    public struct FunctionalReducer<StateType, ActionType> : ActionReducerType where ActionType : Action
  • Middleware is a structure that allows you to modify, filter out and dispatch more actions, before the action being handled reaches the store.

    See more

    Declaration

    Swift

    public struct Middleware<State>