SIMD.%type%.add()

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%.add() method returns a new instance with the lane values added (a + b).

Syntax

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)

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 lane values of a and b added (a + b).

Examples

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]

Specifications

Specification Status Comment
SIMD
The definition of 'SIMDConstructor.add' 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

See also

Document Tags and Contributors

 Contributors to this page: fscholz
 Last updated by: fscholz,