mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
206 B
Swift
14 lines
206 B
Swift
@propertyWrapper
|
|
class Wrapper<T> {
|
|
private var _value: T
|
|
|
|
var wrappedValue: T {
|
|
get { _value }
|
|
set { _value = newValue }
|
|
}
|
|
|
|
init(defaultValue: T) {
|
|
self._value = defaultValue
|
|
}
|
|
}
|