Indirect
@dynamicMemberLookup
public indirect enum Indirect<Wrapped>
extension Indirect: Equatable where Wrapped: Equatable
extension Indirect: Hashable where Wrapped: Hashable
extension Indirect: Decodable where Wrapped: Decodable
extension Indirect: Encodable where Wrapped: Encodable
                Undocumented
- 
                  
                  
Case containing the structure’s wrapped value.
Declaration
Swift
case indirect(Wrapped) 
- 
                  
                  
Declaration
Swift
public static func == (lhs: Indirect<Wrapped>, rhs: Indirect<Wrapped>) -> Bool 
- 
                  
                  
Declaration
Swift
public func hash(into hasher: inout Hasher) 
- 
                  
                  
Declaration
Swift
public init(from decoder: Decoder) throws 
- 
                  
                  
Declaration
Swift
public func encode(to encoder: Encoder) throws 
            View on GitHub
          
      Indirect Enumeration Reference