-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Description
Hi there!
Thanks for an awesome library!
Lately I faced the problem with @propertyWrapper.
I have tried to create a @propertyWrapper:
@propertyWrapper public struct Blob {
public init(length: Int) {
self.length = length
self.wrappedValue = []
}
let length: Int
public var wrappedValue: [UInt8]
}Then I used it in my struct just like this one:
struct MyStruct {
@Blob(length: 10) var blob: [UInt8]
...
}And then I tried to createInstance , i got length = 0, I could not create instance with default length (=10). How to reflect the propertyWrapper and get the default length (= 10)?
Thanks
Metadata
Metadata
Assignees
Labels
No labels