f64.ne
Pops two
f64
values off the stack, checks to see if they are not equal to each other, and then
pushes the result back on to the stack.
if ($first !== $second) {...}
Stack In
f64 |
The first value to check with. |
f64 |
The second value to check against. |
Stack Out
i32 |
The result of the comparsion. If the first and second values are not equal then the result will be 1.
If the values are the same then the result will be 0.
|
Examples
f64.const 3.142
f64.const 2.718
f64.ne
f64.const 3.142
f64.const 3.142
f64.ne