Operatorswift 6.0.1Swift
.==(_:_:)
A vector mask with the result of a pointwise equality comparison.
static func .== (a: SIMD2<Scalar>, b: SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>
Other members in extension
Type members
static func &* (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMD2<Scalar> The pointwise wrapping product of two vectors.
static func &*= (a: inout SIMD2<Scalar>, b: SIMD2<Scalar>
) Updates the left hand side with the pointwise wrapping product of two vectors.
static func &+ (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMD2<Scalar> The wrapping sum of two vectors.
static func &+= (a: inout SIMD2<Scalar>, b: SIMD2<Scalar>
) Updates the left hand side with the wrapping sum of the two vectors.
static func &- (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMD2<Scalar> The wrapping difference of two vectors.
static func &-= (a: inout SIMD2<Scalar>, b: SIMD2<Scalar>
) Updates the left hand side with the wrapping difference of the two vectors.
static func .!= (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMDMask<SIMD2<Scalar>.MaskStorage> A vector mask with the result of a pointwise inequality comparison.
static func .< (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMDMask<SIMD2<Scalar>.MaskStorage> A vector mask with the result of a pointwise less-than comparison.
static func .<= (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMDMask<SIMD2<Scalar>.MaskStorage> A vector mask with the result of a pointwise less-than-or-equal-to comparison.
static func .> (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMDMask<SIMD2<Scalar>.MaskStorage> A vector mask with the result of a pointwise greater-than comparison.
static func .>= (a: SIMD2<Scalar>, b: SIMD2<Scalar>
) -> SIMDMask<SIMD2<Scalar>.MaskStorage> A vector mask with the result of a pointwise greater-than-or-equal-to comparison.