SIMD.neg
SIMD.neg
SIMD.js已经从TC39中取消了积极的开发,并从第三阶段中删除了。它不再被网页浏览器所追求。暴露在 web 上的SIMD 操作在 WebAssembly 中正处于积极的发展之中, 其操作基于 SIMD. js 操作。
静态SIMD.%type%.mul()
方法返回一个新的实例,通道值取反。
语法
SIMD.Float32x4.neg(t)
SIMD.Float64x2.neg(t)
SIMD.Int8x16.neg(t)
SIMD.Int16x8.neg(t)
SIMD.Int32x4.neg(t)
SIMD.Uint8x16.neg(t)
SIMD.Uint16x8.neg(t)
SIMD.Uint32x4.neg(t)
参数
t一个相应的SIMD类型的实例。
返回值
带有通道值的新的相应SIMD数据类型取反。
例子
该例子中一个否定Float32x4
,Float64x2
和一个Int32x4
SIMD数据类型。在float数据类型中-0
zero(0
)被否定的情况下,请注意带符号的零()。
var a = SIMD.Float32x4(-1, -2, 3, 0
SIMD.Float32x4.neg(a
// Float32x4[1, 2, -3, -0]
var b = SIMD.Float64x2(NaN, Infinity
SIMD.Float64x2.neg(b
// Float64x2[NaN, -Infinity]
var c = SIMD.Int32x4(-1, -2, 3, 0
SIMD.Int32x4.neg(c
// Float32x4[1, 2, -3, 0]
规范
Specification | Status | Comment |
---|---|---|
SIMDThe definition of 'SIMDConstructor.neg' in that specification. | Draft | Initial definition. |
浏览器兼容性
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 |