Swift Enumeration
enum Either<Create, Get> where Create : Sendable, Get : Sendable
case create(Create)
case get(Get)
Was this page helpful?