Skip to content

Instantly share code, notes, and snippets.

@BigZaphod
Created August 3, 2021 04:07
Show Gist options
  • Save BigZaphod/165210240dd4ca7a65ae9146f1c09030 to your computer and use it in GitHub Desktop.
Save BigZaphod/165210240dd4ca7a65ae9146f1c09030 to your computer and use it in GitHub Desktop.
@propertyWrapper
struct Wrapper<T> {
var actualValue: T!
var wrappedValue: T {
get {
actualValue
}
set {
actualValue = newValue
}
}
}
struct Thingy {
@Wrapper var whatever: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment