DEV Community

Naveen Ragul B
Naveen Ragul B

Posted on • Updated on

Swift - Nested Types

enumerations, classes, and structures can be nested within the definition of the type they support. Nested types are purely for use within the context of a more complex type.

example :

struct BlackjackCard {

    // nested Suit enumeration
    enum Suit: Character {
        case spades = "♠", hearts = "♡", diamonds = "♢", clubs = "♣"
    }

    // nested Rank enumeration
    enum Rank: Int {
        case two = 2, three, four, five, six, seven, eight, nine, ten
        case jack, queen, king, ace
        struct Values {
            let first: Int, second: Int?
        }
        var values: Values {
            switch self {
            case .ace:
                return Values(first: 1, second: 11)
            case .jack, .queen, .king:
                return Values(first: 10, second: nil)
            default:
                return Values(first: self.rawValue, second: nil)
            }
        }
    }

    // BlackjackCard properties and methods
    let rank: Rank, suit: Suit
    var description: String {
        var output = "suit is \(suit.rawValue),"
        output += " value is \(rank.values.first)"
        if let second = rank.values.second {
            output += " or \(second)"
        }
        return output
    }
}
Enter fullscreen mode Exit fullscreen mode

l

let heartsSymbol = BlackjackCard.Suit.hearts.rawValue  // "♡"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)