Back to Developer Roadmap

Enumerations

src/data/roadmaps/swift-ui/content/[email protected]

4.0713 B
Original Source

Enumerations

Enumerations, often shortened to enums, are a way to define a group of related values under a common type. They essentially let you create your own custom data types where the possible values are explicitly defined. This makes your code more readable and safer by restricting the values a variable can hold to only those you've specified in the enum.

Visit the following resources to learn more: