Created
February 12, 2016 21:12
-
-
Save stone3311/72bfc48a3eab05667922 to your computer and use it in GitHub Desktop.
This is a Bool extension which adds a "intValue" property
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
| extension Bool { | |
| var intValue: Int { | |
| if (self) { | |
| return 1; | |
| } else { | |
| return 0; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment