SE-0258: Property Wrappers (second review)

Implicitly, when no initializer is provided and the property wrapper type provides a no-parameter initializer ( init() ). In such cases, the wrapper type's init() will be invoked to initialize the stored property.

You can create Default like so

protocol Initializable {
  init()
}

extension String: Initializable {}

@propertyWrapper
struct Default<Value> where Value: Initializable {
  var wrappedValue: Value
  init() {
    wrappedValue = Value.init()
  }
}

@Default var foo: String

// translates to (I'm going to use the `_` form which has been discussed recently)
private var _foo = Default<String>()

var foo: String {
  ...
}
1 Like