.<=(_:_:)
Pointwise compare less than or equal to.
Declaration
static func .<= (a: SIMD64<Scalar>, b: Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>Discussion
Each lane of the result is true if that lane of a is less than or equal to b, and false otherwise.
Equivalent to:
var result = SIMDMask<MaskStorage>()
for i in 0..<64 {
result[i] = (a[i] <= b)
}