I see this pattern a bit:
enum Stuff: Int {
case first = 0
case second = 1
case third = 2
case forth = 3
static var count = 4
Later we will use this count variable, but what I really want is the number of case statements in the enum. Is there a way to determine this in code? (Hint, I don't want to trust the associated value)