WebAssembly SIMD-specific arithmetic instructions

WebAssembly SIMD-specific arithmetic instructions.

Comparison

max_s

Compares two v128 signed integer value interpretations and returns a new interpretation with each lane set to the greater of that lane index's value on the two inputs.

max_u

Compares two v128 unsigned integer value interpretations and returns a new interpretation with each lane set to the greater of that lane index's value on the two inputs.

min_s

Compares two v128 signed integer value interpretations and returns a new interpretation with each lane set to the lower of that lane index's value on the two inputs.

min_u

Compares two v128 unsigned integer value interpretations and returns a new interpretation with each lane set to the lower of that lane index's value on the two inputs.

See also