Function wasmer_c_api::wasm_c_api::unstable::features::wasmer_features_simd
source · #[no_mangle]
pub extern "C" fn wasmer_features_simd(
features: Option<&mut wasmer_features_t>,
enable: bool,
) -> bool
Expand description
Configures whether the WebAssembly SIMD proposal will be enabled.
The WebAssembly SIMD proposal is not currently fully standardized and is undergoing development. Support for this feature can be enabled through this method for appropriate WebAssembly modules.
This feature gates items such as the v128
type and all of its
operators being in a module.
This is false
by default.
§Example
See the module’s documentation.