Global Functionswift-composable-architecture 1.18.0ComposableArchitecture
_$isIdentityEqual(_:_:)
ObservableState.swift:129func _$isIdentityEqual<T>(_ lhs: StackState<T>, _ rhs: StackState<T>) -> Bool where T : ObservableState
func _$isIdentityEqual<T>(_ lhs: StackState<T>, _ rhs: StackState<T>) -> Bool where T : ObservableState
s22ComposableArchitecture17_$isIdentityEqualySbAA10StackStateVyxG_AEtAA010ObservableG0RzlF
What are these?1AOSZ
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).
struct StackState<Element>
A list of data representing the content of a navigation stack.
@frozen struct Bool
A value type whose instances are either true
or false
.
protocol ObservableState : Perceptible