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.
El mètode estàtic SIMD.%type%.add()
retorna una nova instància amb les dades del carril sumades (a + b
).
Sintaxi
SIMD.Float32x4.add(a, b) SIMD.Float64x2.add(a, b) SIMD.Int8x16.add(a, b) SIMD.Int16x8.add(a, b) SIMD.Int32x4.add(a, b) SIMD.Uint8x16.add(a, b) SIMD.Uint16x8.add(a, b) SIMD.Uint32x4.add(a, b)
Paràmetres
- a
- Una instància d'un tipus de dades SIMD.
b
- Una altra instància d'un tipus de dades SIMD.
Valor retornat
Un nou tipus de dades SIMD amb els valors del carril de a
i b
sumats (a + b
).
Exemples
var a = SIMD.Float32x4(-1, -2, 3, 4); var b = SIMD.Float32x4(3, 3, 3, 3); SIMD.Float32x4.add(a, b); // Float32x4[2, 1, 6, 7] var c = SIMD.Int16x8(1, 1, 1, 1, 1, 1, 1, 1); var d = SIMD.Int16x8(3, 3, 3, 3, 3, 3, 3, 3); SIMD.Int16x8.add(c, d) // Int16x8[4, 4, 4, 4, 4, 4, 4, 4]
Especificacions
Especificació | Estatus | Comentaris |
---|---|---|
SIMD The definition of 'SIMDConstructor.add' in that specification. |
Draft | Definició inicial. |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | No support | Nightly build | No support | No support | No support |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | No support | No support | Nightly build | No support | No support | No support |