_ReducerPrinter
DebugReducer.swift:25struct _ReducerPrinter<State, Action>
struct _ReducerPrinter<State, Action>
import ComposableArchitecture
The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. It can be used in SwiftUI, UIKit, and more, and on any Apple platform (iOS, macOS, tvOS, and watchOS).
protocol Sendable
init(printChange: @escaping (_ receivedAction: Action, _ oldState: State, _ newState: State) -> Void, queue: DispatchQueue? = nil)
static var actionLabels: Self { get }
static var customDump: Self { get }
func printChange(receivedAction: Action, oldState: State, newState: State)