#include <vec_ops.h>
template<typename _Tp, typename _ValueType, __simd_size_type _Width sizeof(_Tp) / sizeof(_ValueType)>
&& __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; }
[concept.same], concept same_as
Constrain to any vector builtin with given value type and optional width.
Definition at line 72 of file vec_ops.h.