| Technical Specification | ||||
| Filesystem library(filesystem TS) | ||||
| Library fundamentals(library fundamentals TS) | ||||
| Library fundamentals 2(library fundamentals TS v2) | ||||
| Library fundamentals 3(library fundamentals TS v3) | ||||
| Extensions for parallelism(parallelism TS) | ||||
| Extensions for parallelism 2(parallelism TS v2) | ||||
| Extensions for concurrency(concurrency TS) | ||||
| Extensions for concurrency 2(concurrency TS v2) | ||||
| Concepts(concepts TS) | ||||
| Ranges(ranges TS) | ||||
| Reflection(reflection TS) | ||||
| Mathematical special functions(special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
| Parallel exceptions | ||||
| Additional execution policies | ||||
| Algorithms | ||||
| Task blocks | ||||
| Data-parallel vectors | ||||
| Main classes | |||||||
| ABI tags | |||||||
| Alignment tags | |||||||
| Where expression | |||||||
| Casts | |||||||
| |||||||
| Algorithms | |||||||
| Reduction | |||||||
| Mask reduction | |||||||
| Traits | |||||||
| Math functions | |||||||
Defined in header <experimental/simd> | ||
template<class T,class Abi> fixed_size_simd<T, simd_size_v<T, Abi>> | (1) | (parallelism TS v2) |
template<class T,class Abi> fixed_size_simd_mask<T, simd_size_v<T, Abi>> | (2) | (parallelism TS v2) |
template<class T,std::size_t N> native_simd<T> | (3) | (parallelism TS v2) |
template<class T,std::size_t N> native_simd_mask<T> | (4) | (parallelism TS v2) |
template<class T,std::size_t N> simd<T> | (5) | (parallelism TS v2) |
template<class T,std::size_t N> simd_mask<T> | (6) | (parallelism TS v2) |
Returns a simd or simd_mask object with the same elements, but a different ABI.
| v | - | the input simd or simd_mask object |
The simd or simd_mask object with the specified ABI.
| This section is incomplete Reason: no example |