Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 8, 2018 15:35
Show Gist options
  • Select an option

  • Save vialyx/8047f5c0c4a0a2a0d5afc0f556f6c326 to your computer and use it in GitHub Desktop.

Select an option

Save vialyx/8047f5c0c4a0a2a0d5afc0f556f6c326 to your computer and use it in GitHub Desktop.
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