Instance Propertypointfreeco.swift-concurrency-extras 1.3.1ConcurrencyExtras
base
AnyHashableSendable.swift:6let base: any Hashable & Sendable
let base: any Hashable & Sendable
s17ConcurrencyExtras19AnyHashableSendableV4baseSH_s0E0pvp
What are these?OJBC
import ConcurrencyExtras
Useful, testable Swift concurrency.
struct AnyHashableSendable
A type-erased hashable, sendable value.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
protocol Sendable
init(_ base: any Hashable & Sendable)
Creates a type-erased hashable, sendable value that wraps the given instance.
init(_ base: some Hashable & Sendable)
Creates a type-erased hashable, sendable value that wraps the given instance.
init(booleanLiteral value: Bool)
init(floatLiteral value: Double)
init(integerLiteral value: Int)
init(stringLiteral value: String)
var customMirror: Mirror { get }
var debugDescription: String { get }
var description: String { get }
static func == (lhs: `Self`, rhs: `Self`) -> Bool
func _toCustomAnyHashable() -> AnyHashable?
func hash(into hasher: inout Hasher)