-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Fixed-length lists, host side #12315
New issue
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
base: main
Are you sure you want to change the base?
Conversation
Subscribe to Label Actioncc @fitzgen DetailsThis issue or pull request has been labeled: "fuzzing", "wasmtime:api", "wasmtime:c-api", "wasmtime:config"Thus the following users have been cc'd because of the following labels:
To subscribe or unsubscribe from this label, edit the |
Label Messager: wasmtime:configIt looks like you are changing Wasmtime's configuration options. Make sure to
DetailsTo modify this label's message, edit the To add new label messages or remove existing label messages, edit the |
| InterfaceType::FixedSizeList(ty) => cx.types[ty].element, | ||
| _ => bad_type_info(), | ||
| }; | ||
| // this is reimplementation of array::try_from_fn |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really hope that array support in Rust gets more complete. I remember the days before const generics but it is still painful enough.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(this was meant to refer to these lines: https://github.com/bytecodealliance/wasmtime/pull/12315/files#diff-a4b664609b4ea6b8ab8e0ea68d1d58509eee5571e08e6d7e10aec913a85836d6R2936-R2962 )
|
TODO: Check whether the standard name fixed-length lists is used over fixed size lists. |
Implements #12279
Includes all the commits on #10619 , so that one should be merged first.