Discussion 解説
Equivalent to: 次に等しい:
var result = Self()
for i in indices {
result[i] = mask[i] ? other[i] : self[i]
}
other
in the lanes where mask
is true
.
このベクターのコピーを返します、mask
がtrue
であるところの、レーンの中の要素other
を持ちます。
Availability
Technology
Storage
is SIMD4
<
Int32
>
.
Storage
がSIMD4
<
Int32
>
である時に利用可能です。
Equivalent to: 次に等しい:
var result = Self()
for i in indices {
result[i] = mask[i] ? other[i] : self[i]
}