MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / is_float

Method is_float

cranelift/interpreter/src/value.rs:311–316  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

309 }
310
311 fn is_float(&self) -> bool {
312 match self {
313 DataValue::F16(_) | DataValue::F32(_) | DataValue::F64(_) | DataValue::F128(_) => true,
314 _ => false,
315 }
316 }
317
318 fn is_nan(&self) -> ValueResult<bool> {
319 match self {

Callers 7

convertMethod · 0.45
addMethod · 0.45
subMethod · 0.45
mulMethod · 0.45
sdivMethod · 0.45
udivMethod · 0.45
extractlanesFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected