CaseReducer

A reducer represented by multiple enum cases.

CaseReducer.swift:5
protocol CaseReducer<State, Action> : Reducer where Self.Action == Self.Body.Action, Self.Body : Reducer, Self.State : CaseReducerState, Self.State == Self.Body.State
Browse conforming types

You should not conform to this protocol directly. Instead, the Reducer macro will add a conformance to enums.