Please turn on JavaScript in your browser and refresh the page to view its content.
Availability
Technology
On This Page この項には
static func .| (a: SIMDMask<Storage>, b: SIMDMask<Storage>) -> SIMDMask<Storage>
SIMDMask
Equivalent to: 次に等しい:
var result = SIMDMask<${Vector}>() for i in result.indices { result[i] = a[i] || b[i] }
Note that unlike the scalar || operator, the SIMD .| operator always fully evaluates both arguments. スカラー||演算子と違って、SIMD .| 演算子は常に両方の引数を完全に評価することに注意してください。
||
.|