Helper functions for converting WasmEdge_String to std::String.
| 274 | |
| 275 | // Helper functions for converting WasmEdge_String to std::String. |
| 276 | inline std::string_view genStrView(const WasmEdge_String S) noexcept { |
| 277 | return std::string_view(S.Buf, S.Length); |
| 278 | } |
| 279 | |
| 280 | // Helper functions for converting a ValVariant vector to a WasmEdge_Value |
| 281 | // array. |
no outgoing calls
no test coverage detected