MCPcopy Index your code
hub / github.com/explodingcamera/tinywasm / into_wasm_values

Method into_wasm_values

crates/tinywasm/src/func.rs:783–789  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

781impl<T1: IntoWasmValues, T2: IntoWasmValues> IntoWasmValues for WasmTupleChain<T1, T2> {
782 #[inline]
783 fn into_wasm_values(self) -> Vec<WasmValue> {
784 let (left, right) = self.into_inner();
785 let mut values = Vec::new();
786 values.extend(left.into_wasm_values());
787 values.extend(right.into_wasm_values());
788 values
789 }
790}
791
792impl<T1: FromWasmValues + ToWasmTypes, T2: FromWasmValues> FromWasmValues for WasmTupleChain<T1, T2> {

Callers 3

fromMethod · 0.80
callMethod · 0.80
call_resumableMethod · 0.80

Calls 1

into_innerMethod · 0.80

Tested by

no test coverage detected