pub unsafe fn sve_tuple_create2<SVec, SVecTup>(x0: SVec, x1: SVec) -> SVecTup🔬This is a nightly-only experimental API. (
core_intrinsics)This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Expand description
Create a tuple of two vectors.
SVecTup must be a scalable vector tuple (#[rustc_scalable_vector]) and SVec must be a
scalable vector (#[rustc_scalable_vector(N)]). SVecTup must be a tuple of vectors of
type SVec.
Corresponds to Clang’s __builtin_sve_svcreate2* builtins.