f32.ne
Pops two
f32 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
| f32 |
The first value to check with. |
| f32 |
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
f32.const 3.142
f32.const 2.718
f32.ne
f32.const 3.142
f32.const 3.142
f32.ne