Explain Enum in Swift
Enum is also known as Swift Enumeration. Enum is a data type which contains a set of the related values. It is declared in a class and its values are accessed through the instance members of that class. In Swift, an enum, short for enumeration, is a user-defined data type that enables you to define … Read more