MCPcopy Create free account
hub / github.com/WebAssembly/wasm-c-api / f32

Method f32

include/wasm.hh:529–529  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

527 static auto i32(int32_t x) -> Val { return Val(x); }
528 static auto i64(int64_t x) -> Val { return Val(x); }
529 static auto f32(float32_t x) -> Val { return Val(x); }
530 static auto f64(float64_t x) -> Val { return Val(x); }
531 static auto ref(own<Ref>&& x) -> Val { return Val(std::move(x)); }
532 template<class T> inline static auto make(T x) -> Val;

Callers 6

operator<<Function · 0.80
runFunction · 0.80
val_to_v8Function · 0.80
setMethod · 0.80
hide_valFunction · 0.80
release_valFunction · 0.80

Calls 1

ValClass · 0.85

Tested by

no test coverage detected