Last active
October 8, 2018 15:35
-
-
Save vialyx/8047f5c0c4a0a2a0d5afc0f556f6c326 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
| struct PropertyStructM { | |
| static func typeMethod() { | |
| // Code | |
| } | |
| } | |
| PropertyStructM.typeMethod() | |
| enum PropertyEnumM { | |
| static func typeMethod() { | |
| // Code | |
| } | |
| } | |
| PropertyEnumM.typeMethod() | |
| class PropertyClassM { | |
| static func typeMethod() { | |
| // Code | |
| } | |
| class func overreadableTypeMethod() { | |
| // Code | |
| } | |
| } | |
| PropertyClassM.typeMethod() | |
| PropertyClassM.overreadableTypeMethod() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment