Results 21 - 40 of 1,081

SIMD.%type%.anyTrue()

The static SIMD.%BooleanType%.anyTrue() method returns a Boolean indicating whether or not any of the lanes hold a true value.
Experimental JavaScript SIMD

SIMD.%type%.check()

The static SIMD.%type%.check() method returns a SIMD data type if the parameter is a valid SIMD data type and the same as %type%. Otherwise, a TypeError is thrown.
Experimental JavaScript Method SIMD

SIMD.%type%.div()

The static SIMD.%type%.div() method returns a new instance with the lane values divided (a / b). This function is defined only on floating point SIMD types.
Experimental JavaScript Method SIMD

SIMD.%type%.equal()

The static SIMD.%type%.equal() method returns a selection mask with values depending on a strict equality comparison (a === b) in each lane.
Experimental JavaScript Method SIMD

SIMD.%type%.extractLane()

The static SIMD.%type%.extractLane() method returns the value of a given lane.
Experimental JavaScript Method SIMD

SIMD.%type%.fromFloat32x4()

The static SIMD.%type%.fromFloat32x4() method creates a new SIMD data type with a float conversion from a Float32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromFloat32x4Bits()

The static SIMD.%type%.fromFloat32x4Bits() method creates a new SIMD data type with a bit-wise copy from a Float32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromFloat64x2Bits()

The static SIMD.%type%.fromFloat64x2Bits() method creates a new SIMD data type with a bit-wise copy from a Float64x2.
Experimental JavaScript Method SIMD

SIMD.%type%.fromInt16x8Bits()

The static SIMD.%type%.fromInt16x8Bits() method creates a new SIMD data type with a bit-wise copy from an int16x8.
Experimental JavaScript Method SIMD

SIMD.%type%.fromInt32x4()

The static SIMD.%type%.fromInt32x4() method creates a new SIMD data type with a float conversion from an Int32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromInt32x4Bits()

The static SIMD.%type%.fromInt32x4Bits() method creates a new SIMD data type with a bit-wise copy from an Int32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromInt8x16Bits()

The static SIMD.%type%.fromInt8x16Bits() method creates a new SIMD data type with a bit-wise copy from an Int8x16.
Experimental JavaScript Method SIMD

SIMD.%type%.fromUint16x8Bits()

The static SIMD.%type%.fromUint16x8Bits() method creates a new SIMD data type with a bit-wise copy from a Uint16x8.
Experimental JavaScript Method SIMD

SIMD.%type%.fromUint32x4()

The static SIMD.%type%.fromUint32x4() method creates a new SIMD data type with a conversion from a Uint32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromUint32x4Bits()

The static SIMD.%type%.fromUint32x4Bits() method creates a new SIMD data type with a bit-wise copy from a Uint32x4.
Experimental JavaScript Method SIMD

SIMD.%type%.fromUint8x16Bits()

The static SIMD.%type%.fromUint8x16Bits() method creates a new SIMD data type with a bit-wise copy from a Uint8x16.
Experimental JavaScript Method SIMD

SIMD.%type%.greaterThan()

The static SIMD.%type%.greaterThan() method returns a selection mask with values depending on a greater-than comparison (a > b) in each lane.
Experimental JavaScript Method SIMD

SIMD.%type%.greaterThanOrEqual()

The static SIMD.%type%.greaterThanOrEqual() method returns a selection mask with values depending on a greater-than-or-equal comparison (a >= b) in each lane.
Experimental JavaScript Method SIMD

SIMD.%type%.lessThan()

The static SIMD.%type%.lessThan() method returns a selection mask with values depending on a less-than comparison (a < b) in each lane.
Experimental JavaScript Method SIMD

SIMD.%type%.lessThanOrEqual()

The static SIMD.%type%.lessThanOrEqual() method returns a selection mask with values depending on a less-than-or-equal comparison (a <= b) in each lane.
Experimental JavaScript Method SIMD