-
Couldn't load subscription status.
- Fork 116
Open
Description
Hi !
Following the example given in the documentation:
struct Book: Codable {
@Element var id: Int
}
I tried to create an instance of a Book:
let book = Book(id: 42)
But I get the following error:
Cannot convert value of type 'Int' to expected argument type 'Element<Int>'
To make it work I have to do:
let book = Book(id: Element(42))
Is there something I'm doing wrong ? Thank you 😊
Metadata
Metadata
Assignees
Labels
No labels