<div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;">Maybe the dictionary literal syntax could be used as a shorthand?</div><div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;"><br></div><div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;">enum Suit: Int {<br>&nbsp; case Hearts, Spades, Diamonds, Clubs<br><br>&nbsp;&nbsp;var description: String {<br>&nbsp;&nbsp;&nbsp; return switch self [<br>&nbsp;&nbsp;&nbsp; &nbsp; .Hearts: "♥️",<br>&nbsp; &nbsp;&nbsp;&nbsp; .Spades: "♠️",<br>&nbsp;&nbsp;&nbsp; &nbsp; .Diamonds: "♦️",<br>&nbsp; &nbsp;&nbsp;&nbsp; .Clubs: "♣️"<br>&nbsp;&nbsp;&nbsp; ]<br>&nbsp;&nbsp;}<br><br>&nbsp;&nbsp;var isRed: Bool {<br>&nbsp;&nbsp;&nbsp; return switch self [<br>&nbsp; &nbsp;&nbsp;&nbsp; .Hearts: true,<br>&nbsp; &nbsp;&nbsp;&nbsp; .Diamonds: true,<br>&nbsp; &nbsp; &nbsp;&nbsp;.Spades: false,<br>&nbsp; &nbsp; &nbsp;&nbsp;.Clubs: false<br>&nbsp; &nbsp;&nbsp;]<br>&nbsp;&nbsp;}<br>}<br></div><div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;"><br></div><div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;"><br></div><div style="max-width: 100%; font-family: Nylas-Pro, Helvetica, 'Lucidia Grande', sans-serif; font-size: 14.5px; line-height: 21.75px;">Patrick</div>