Function vec_subc

Source
pub unsafe fn vec_subc<T, U>(a: T, b: U) -> <T as VectorSubc<U>>::Result
where T: VectorSubc<U>,
🔬This is a nightly-only experimental API. (stdarch_s390x #135681)
Available on s390x and target feature vector only.
Expand description

Vector Subtract Carryout

Returns a vector containing the borrow produced by subtracting each of corresponding elements of b from a.

On each resulting element, the value is 0 if a borrow occurred, or 1 if no borrow occurred.