_SendableCaseKeyPath
KeyPath+Sendable.swift:12typealias _SendableCaseKeyPath<Root, Value> = any CaseKeyPath<Root, Value> & Sendable
typealias _SendableCaseKeyPath<Root, Value> = any CaseKeyPath<Root, Value> & Sendable
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).
typealias CaseKeyPath<Root, Value> = KeyPath<Case<Root>, Case<Value>>
A key path to the associated value of an enum case.
protocol Sendable