_SendableKeyPath
KeyPath+Sendable.swift:4typealias _SendableKeyPath<Root, Value> = any KeyPath<Root, Value> & Sendable
typealias _SendableKeyPath<Root, Value> = any KeyPath<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).
class KeyPath<Root, Value>
A key path from a specific root type to a specific resulting value type.
protocol Sendable