我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The static SIMD.%type%.min()
method returns a new instance with the minimum lane values of two SIMD types (Math.min(a, b)
).
Syntax
SIMD.Float32x4.min(a, b) SIMD.Float64x2.min(a, b)
Parameters
- a
- An instance of a SIMD type.
b
- Another instance of a SIMD type.
Return value
A new corresponding SIMD data type with the minimum lane values of a
and b
(Math.min(a, b)
).
Description
The SIMD.%type%.min()
method returns a new instance with the minimum lane values of two SIMD types (Math.min(a, b)
).
This method prefers NaN
over numbers. The SIMD.%type%.minNum
method prefers numbers over NaN
.
Examples
var a = SIMD.Float32x4(-1, -2, 3, 5.2); var b = SIMD.Float32x4(0, -4, 6, 5.5); SIMD.Float32x4.min(a, b); // Float32x4[-1, -4, 3, 5.2] var c = SIMD.Float64x2(NaN, Infinity) var d = SIMD.Float64x2(1337, 42); SIMD.Float64x2.min(c, d); // Float64x2[NaN, 42]
Specifications
Specification | Status | Comment |
---|---|---|
SIMD The definition of 'SIMDConstructor.min' in that specification. |
Draft | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support | Nightly build | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | Nightly build | No support | No support | No support |