==(_:_:)
PresentationReducer.swift:190static func == (lhs: Self, rhs: Self) -> Bool
static func == (lhs: Self, rhs: Self) -> Bool
s22ComposableArchitecture17PresentationStateVAASQRzlE2eeoiySbACyxG_AEtFZ
What are these?5A72I
where State: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 PresentationState<State>
A property wrapper for state that can be presented.
@frozen struct Bool
A value type whose instances are either true
or false
.
protocol Equatable
A type that can be compared for value equality.