.TH "std::simd::__vec_builtin_of" 3 "libstdc++" \" -*- nroff -*- .ad l .nh .SH NAME std::simd::__vec_builtin_of .SH SYNOPSIS .br .PP .PP \fR#include \fP .SH "Concept definition" .PP .nf template concept __vec_builtin_of = !is_class_v<_Tp> && !is_pointer_v<_Tp> && !is_arithmetic_v<_Tp> && __vectorizable<_ValueType> && _Width >= 1 && sizeof(_Tp) / sizeof(_ValueType) == _Width && same_as<__vec_builtin_type_bytes<_ValueType, sizeof(_Tp)>, _Tp> && requires(_Tp& __v, _ValueType __x) { __v[0] = __x; } .PP .fi .SH "Detailed Description" .PP Constrain to any vector builtin with given value type and optional width\&. .SH "Author" .PP Generated automatically by Doxygen for libstdc++ from the source code\&.