Operatorswift 6.0.3Swift
.==(_:_:)
A vector mask with the result of a pointwise equality comparison.
- iOS
- 14.0+
- macOS
- 11.0+
- tvOS
- 14.0+
- watchOS
- 7.0+
static func .== (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise equality comparison.
static func .== (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
ss5SIMD4Vss7Float16VRszrlE3zeeoiys8SIMDMaskVyABys5Int16VGGAByADG_ALtFZ
What are these?6F4LP
where Scalar == Float16
import Swift
@frozen struct SIMD4<Scalar> where Scalar : SIMDScalar
A vector of four scalar values.
@frozen struct SIMDMask<Storage> where Storage : SIMD, Storage.Scalar : FixedWidthInteger, Storage.Scalar : SignedInteger
typealias MaskStorage = SIMD4<Scalar.SIMDMaskScalar>
@frozen struct Float16
A half-precision (16b), floating-point value type.
static func .!= (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise inequality comparison.
static func .< (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise less-than comparison.
static func .<= (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise less-than-or-equal-to comparison.
static func .> (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise greater-than comparison.
static func .>= (a: SIMD4<Scalar>, b: SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>
A vector mask with the result of a pointwise greater-than-or-equal-to comparison.