Files
omnivore/apple/OmnivoreKit/Sources/Utils/Either.swift
2022-02-11 09:24:33 -08:00

7 lines
79 B
Swift

import Foundation
public enum Either<A, B> {
case left(A)
case right(B)
}