Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Generics in Swift Generic Types Creating a Generic Type

Calvin Morley
PLUS
Calvin Morley
Courses Plus Student 4,957 Points

There seems to be a bug with this challenge. The code below works in my playgound yet its not being accepted.

Specifically saying compiler errors which I know there are not

struct Queue<Element> { var array: [Element]

var isEmpty: Bool {
    if array.isEmpty {
        return true
    } else {
        return false
    }
}

}

generics.swift
struct Queue<Element> {
    var array: [Element]

    var isEmpty: Bool {
        if array.isEmpty {
            return true
        } else {
            return false
        }
    }
}

1 Answer

Dhanish Gajjar
Dhanish Gajjar
20,185 Points

You haven’t set the array to be an empty array for initial value there. All it says is array is [Element]. It compiles because it then relies on you creating an instance of Queue and assigning an array to the property. Your computed property is correct. you just need to give the array an initial value of empty so it defaults to empty.

struct Queue<Element> {
    var array:[Element] = []

    var isEmpty: Bool {
        if array.isEmpty {
            return true
        } else {
            return false
        }
    }
}