summaryrefslogtreecommitdiff
path: root/Sora/Data/Either.swift
blob: 2c2dd22b66367c4fc9c6b0fcada2d63128685a3e (plain) (blame)
1
2
3
4
enum Either<Left: Hashable, Right: Hashable>: Hashable {
  case left(Left)
  case right(Right)
}