wasmi_c_api

Function wasm_table_get

source
#[no_mangle]
pub unsafe extern "C" fn wasm_table_get(
    t: &mut wasm_table_t,
    index: wasm_table_size_t,
) -> Option<Box<wasm_ref_t>>
Expand description

Returns the element at index of wasm_table_t t.

Wraps Table::get.

§Safety

It is the caller’s responsibility not to alias the wasm_table_t with its underlying, internal WasmStoreRef.