Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

SIMD.%type%.add()

This is an experimental technology, part of the ECMAScript 2016 (ES7) proposal.
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 version of browsers as the spec changes.

静的な SIMD.%type%.add() メソッドは加算されたレーン値 (a + b) をもつ新しいインスタンスを返します。

構文

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)

引数

a
SIMD 型のインスタンス。
b
SIMD 型の別のインスタンス。

返り値

ab を加算したレーン値(a + b) に対応する新しい SIMD データ型。

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]

仕様

仕様 ステータス コメント
SIMD
The definition of 'SIMDConstructor.add' in that specification.
ドラフト 初回定義。

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート 未サポート Nightly build 未サポート 未サポート 未サポート
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート 未サポート 未サポート Nightly build 未サポート 未サポート 未サポート

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: dskmori, shide55
 最終更新者: dskmori,