Skip to content
mattpolzin edited this page May 23, 2020 · 5 revisions

Either

public enum Either<A, B>

Inheritance

CustomStringConvertible, Decodable, Encodable

Initializers

init(_:)

public init(_ a: A)

init(_:)

public init(_ b: B)

Enumeration Cases

a

case a(: A)

b

case b(: B)

Properties

description

var description: String

a

var a: A?

b

var b: B?

value

var value: Any
Types
Protocols
Global Functions
Extensions

Clone this wiki locally