Instance Propertyswift-composable-architecture 1.18.0ComposableArchitecture
customMirror
Binding.swift:382var customMirror: Mirror { get }
var customMirror: Mirror { get }
s22ComposableArchitecture16BindingViewStateV12customMirrors0G0Vvp
What are these?BHHA
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).
@dynamicMemberLookup @propertyWrapper struct BindingViewState<Value>
A property wrapper type that can designate properties of view state that can be directly bindable in SwiftUI views.
struct Mirror
A representation of the substructure and display style of an instance of any type.
var customDumpValue: Any { get }
var projectedValue: Binding<Value> { get }
var wrappedValue: Value { get set }
subscript<Subject>(dynamicMember keyPath: WritableKeyPath<Value, Subject>) -> BindingViewState<Subject> { get }