| 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 | ||||
Defined in header <experimental/simd> | ||
template<class T,class Abi> where_expression<simd_mask<T, Abi>, simd<T, Abi>> | (1) | (parallelism TS v2) |
template<class T,class Abi> const_where_expression<simd_mask<T, Abi>,const simd<T, Abi>> | (2) | (parallelism TS v2) |
template<class T,class Abi> where_expression<simd_mask<T, Abi>, simd_mask<T, Abi>> | (3) | (parallelism TS v2) |
template<class T,class Abi> const_where_expression<simd_mask<T, Abi>,const simd_mask<T, Abi>> | (4) | (parallelism TS v2) |
template<class T> where_expression<bool, T> | (5) | (parallelism TS v2) |
template<class T> const_where_expression<bool,const T> | (6) | (parallelism TS v2) |
Constructs a newconst_where_expression orwhere_expression.
Contents |
| mask | - | the mask of typebool |
| value | - | reference to the scalar that mask applies on |
The constructedconst_where_expression orwhere_expression.
| This section is incomplete Reason: no example |