Static Propertyswift-composable-architecture 1.18.0ComposableArchitecture
customDump
DebugReducer.swift:53static var customDump: Self { get }
static var customDump: Self { get }
s22ComposableArchitecture15_ReducerPrinterV10customDumpACyxq_GvpZ
What are these?4AI73
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).
struct _ReducerPrinter<State, Action>
init(printChange: @escaping (_ receivedAction: Action, _ oldState: State, _ newState: State) -> Void, queue: DispatchQueue? = nil)
static var actionLabels: Self { get }
func printChange(receivedAction: Action, oldState: State, newState: State)