Indirect
public struct Indirect<T>
extension Indirect: @unchecked Sendable where T: Sendable
extension Indirect: Equatable where T: Equatable
extension Indirect: Hashable where T: Hashable
extension Indirect: Comparable where T: Comparable
extension Indirect: CustomStringConvertible where T: CustomStringConvertible
A wrapper type allocating T out-of-line.
-
Declaration
Swift
public static func == (l: `Self`, r: `Self`) -> Bool
-
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
Declaration
Swift
public static func < (l: `Self`, r: `Self`) -> Bool
-
Declaration
Swift
public var description: String { get }
View on GitHub