.!(_:)

    A vector mask that is the pointwise logical negation of the input.

    static func .! (a: SIMDMask<Storage>) -> SIMDMask<Storage>

    Equivalent to:

    var result = SIMDMask<SIMD32<Int64>>()
    for i in result.indices {
      result[i] = !a[i]
    }

    Other members in extension

    Type members

    Instance members