この記事は編集レビューを必要としています。ぜひご協力ください。
この翻訳は不完全です。英語から この記事を翻訳 してください。
This is an experimental technology, part of the Harmony (ECMAScript 7) 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%.shiftRightLogicalByScalar()
メソッドは引数で与えられたビット数で(論理的に)右へシフトされたレーン値をもつ新しいインスタンスを返します(a >>> bits
)。
構文
SIMD.int8x16.shiftRightLogicalByScalar(a, bits) SIMD.int16x8.shiftRightLogicalByScalar(a, bits) SIMD.int32x4.shiftRightLogicalByScalar(a, bits)
引数
- a
- SIMD型のインスタンス
bits
- シフトするビット数
戻り値
引数で与えられたビット数で(論理的に)右へシフトされたレーン値をもつ新しい対応するSIMDデータ型(a >>> bits
)。
説明
ビット単位の論理右シフト演算は特定の数のビットを右へシフトします。右へシフトする際の過剰なビットは破棄されます。ゼロビットは左からシフトされます。符号ビットは0になり、その結果は常に非負であります。
非負の数値の場合、算術右シフトと論理右シフトは同じ結果になります。
例えば、-8 >>> 1
のビット単位の論理右シフトの結果は10進数で2147483644
である01111111111111111111111111111100
になります。
-8 11111111111111111111111111111000 -------------------------------- 2147483644 01111111111111111111111111111100
例
int32x4
のビット単位の論理右シフト
var a = SIMD.int32x4(1, 2, 4, -8); SIMD.int32x4.shiftRightLogicalByScalar(a, 1); // int32x4[0, 1, 2, 2147483644]
仕様
SIMDはまだ公式規格文書やドラフトでサポートされていません。typed arraysに基づいた標準化作業や互換性実装のために、ecmascript_simd GitHub リポジトリを確かめて下さい。
ブラウザ実装状況
機能 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本サポート | 未サポート | Nightly build | 未サポート | 未サポート | 未サポート |
機能 | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基本サポート | 未サポート | 未サポート | Nightly build | 未サポート | 未サポート | 未サポート |