==(_:_:)
TaskResult.swift:261static func == (lhs: Self, rhs: Self) -> Bool
static func == (lhs: Self, rhs: Self) -> Bool
s22ComposableArchitecture10TaskResultOAASQRzrlE2eeoiySbACyxG_AEtFZ
What are these?9J7A9
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).
enum TaskResult<Success> where Success : Sendable
A value that represents either a success or a failure. This type differs from Swift’s Result
type in that it uses only one generic for the success case, leaving the failure case as an untyped Error
.
@frozen struct Bool
A value type whose instances are either true
or false
.
protocol Equatable
A type that can be compared for value equality.
protocol Sendable