==(_:_:)
Binding.swift:87static func == (lhs: Self, rhs: Self) -> Bool
static func == (lhs: Self, rhs: Self) -> Bool
s22ComposableArchitecture12BindingStateVAASQRzlE2eeoiySbACyxG_AEtFZ
What are these?384FP
where Value:Equatable
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).
@propertyWrapper struct BindingState<Value>
A property wrapper type that can designate properties of app state that can be directly bindable in SwiftUI views.
@frozen struct Bool
A value type whose instances are either true
or false
.
protocol Equatable
A type that can be compared for value equality.