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%.abs()

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%.abs() retorna un nou tipus de dades SIMD amb valors absoluts. Aquesta operació només existeix per a tipus de daes SIMD de coma flotant.

Sintaxi

SIMD.Float32x4.abs(t)
SIMD.Float64x2.abs(t)

Paràmetres

t
Una instància que correspòn a un tipus SIMD.

Valor retornat

Un nou tipus de dades SIMD amb els valors absoluts.

Descripció

El mètode SIMD.%type%.abs és comparable a la funció escalar Math.abs().

Exemples

var a = SIMD.Float32x4(-1, -2, 0, NaN);
SIMD.Float32x4.abs(a);
// Float32x4[1, 2, 0, NaN]

var b = SIMD.Float64x2(-1, -2);
SIMD.Float64x2.abs(b);
// Float64x2[1, 2]

Especificacions

Especificació Estat Comentaris
SIMD
The definition of 'SIMDConstructor.abs' 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

Vegeu també

Document Tags and Contributors

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