We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 😊
The text was updated successfully, but these errors were encountered:
No, his is correct as it stands. But I'll keep the issue open as I think we can fix it in the signature.
Sorry, something went wrong.
No branches or pull requests
Hi !
Following the example given in the documentation:
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 😊
The text was updated successfully, but these errors were encountered: