Instance Methodswift-composable-architecture 1.18.0ComposableArchitecture
hash(into:)
Binding.swift:93func hash(into hasher: inout Hasher)
func hash(into hasher: inout Hasher)
s22ComposableArchitecture12BindingStateVAASHRzlE4hash4intoys6HasherVz_tF
What are these?760UI
where Value:Hashable
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 Hasher
The universal hash function used by Set
and Dictionary
.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.