ArcGISKit Documentation

Enumeration Either

public enum Either<Left: Codable & Equatable, Right: Codable & Equatable>: Codable, Equatable  
%165 Either Either Codable Codable Either->Codable Equatable Equatable Either->Equatable

Conforms To

Codable
Equatable

Initializers

init(from:​)

public init(from decoder: Decoder) throws  

Enumeration Cases

left

case left(Left) 

right

case right(Right) 

Methods

encode(to:​)

public func encode(to encoder: Encoder) throws  

Operators

==

public static func == (lhs: Self, rhs: Self) -> Bool