Operatorswift 6.0.1Swift
.==(_:_:)
A vector mask with the result of a pointwise equality comparison.
static func .== (a: SIMDMask<Storage>, b: SIMDMask<Storage>) -> SIMDMask<Storage>
Equivalent to:
var result = SIMDMask<SIMD2<Int64>>()
for i in result.indices {
result[i] = a[i] == b[i]
}
Other members in extension
Type members
static func .! (a: SIMDMask<Storage>
) -> SIMDMask<Storage> A vector mask that is the pointwise logical negation of the input.
static func .!= (a: SIMDMask<Storage>, b: SIMDMask<Storage>
) -> SIMDMask<Storage> A vector mask with the result of a pointwise inequality comparison.
static func .& (a: SIMDMask<Storage>, b: SIMDMask<Storage>
) -> SIMDMask<Storage> A vector mask that is the pointwise logical conjunction of the inputs.
static func .&= (a: inout SIMDMask<Storage>, b: SIMDMask<Storage>
) Replaces
a
with the pointwise logical conjunction ofa
andb
.static func .^ (a: SIMDMask<Storage>, b: SIMDMask<Storage>
) -> SIMDMask<Storage> A vector mask that is the pointwise exclusive or of the inputs.
static func .^= (a: inout SIMDMask<Storage>, b: SIMDMask<Storage>
) Replaces
a
with the pointwise exclusive or ofa
andb
.static func .| (a: SIMDMask<Storage>, b: SIMDMask<Storage>
) -> SIMDMask<Storage> A vector mask that is the pointwise logical disjunction of the inputs.
static func .|= (a: inout SIMDMask<Storage>, b: SIMDMask<Storage>
) Replaces
a
with the pointwise logical disjunction ofa
andb
.
Instance members
func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>
) Replaces elements of this vector with elements of
other
in the lanes wheremask
istrue
.func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>
) -> SIMDMask<Storage> Returns a copy of this vector, with elements replaced by elements of
other
in the lanes wheremask
istrue
.