==(_:_:)
Binding.swift:369static func == (lhs: Self, rhs: Self) -> Bool
static func == (lhs: Self, rhs: Self) -> Bool
s22ComposableArchitecture16BindingViewStateVAASQRzlE2eeoiySbACyxG_AEtFZ
What are these?92C5Q
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).
@dynamicMemberLookup @propertyWrapper struct BindingViewState<Value>
A property wrapper type that can designate properties of view 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.