In Swift 3, say there is a system defined enum (i.e. I don't control the source code) like this:
enum currentState: Int {
case enabled
case disabled
case unknown
}
Is it possible to add an associated value to the existing members specifically via extensions?