Created
July 16, 2020 10:21
-
-
Save stleamist/87c9bdd1bfb53d64f5898809ea19f1d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Swift | |
extension CaseIterable where Self: Equatable { | |
var index: Self.AllCases.Index { | |
return Self.allCases.firstIndex(of: self)! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment