import Foundation public enum Either { case left(value: Left) case right(value: Right) }