Avatar
omochimetaru 5/9/2023 5:23 AM
Hello, Swift Evolution! Property wrappers have the ability to abstract the storage of a property, including bespoke definite initialization support: @propertyWrapper struct Wrapper { var wrappedValue: T } struct S { @Wrapper var value: Int init(value: Int) { self.value = value // Re-written to self._value = Wrapper(wrappedValue: v...
👀 3
5:23 AM
ホーリー&ドーグから面妖な提案が出た
5:24 AM
パッとみよくわからんかったので後でちゃんと読む