_StoreBindable_Perception
Binding+Observation.swift:314- iOS
- obsoleted
- macOS
- obsoleted
- tvOS
- obsoleted
- visionOS
- unavailable
- watchOS
- obsoleted
@dynamicMemberLookup struct _StoreBindable_Perception<State, Action, Value> where State : ObservableState
@dynamicMemberLookup struct _StoreBindable_Perception<State, Action, Value> where State : ObservableState
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 ObservableState : Perceptible
subscript<Member>(dynamicMember keyPath: KeyPath<Value, Member>) -> _StoreBindable_Perception<State, Action, Member> { get }
@preconcurrency @MainActor func sending(_ action: CaseKeyPath<Action, Value>) -> Binding<Value>
Creates a binding to the value by sending new values through the given action.