std::experimental::where

来自cppreference.com
< cpp‎ | experimental‎ | simd
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS 功能特性
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
在标头 <experimental/simd> 定义
template< class T, class Abi >

where_expression<simd_mask<T, Abi>, simd<T, Abi>>
    where( const typename simd<T, Abi>::mask_type& mask,

           simd<T, Abi>& value ) noexcept;
(1) (并行 TS v2)
template< class T, class Abi >

const_where_expression<simd_mask<T, Abi>, const simd<T, Abi>>
    where( const typename simd<T, Abi>::mask_type& mask,

           const simd<T, Abi>& value ) noexcept;
(2) (并行 TS v2)
template< class T, class Abi >

where_expression<simd_mask<T, Abi>, simd_mask<T, Abi>>
    where( const type_identity_t<simd_mask<T, Abi>>& mask,

           simd_mask<T, Abi>& value ) noexcept;
(3) (并行 TS v2)
template< class T, class Abi >

const_where_expression<simd_mask<T, Abi>, const simd_mask<T, Abi>>
    where( const type_identity_t<simd_mask<T, Abi>>& mask,

           const simd_mask<T, Abi>& value ) noexcept;
(4) (并行 TS v2)
template< class T >

where_expression<bool, T>

    where( /* 见下文 */ mask, T& value ) noexcept;
(5) (并行 TS v2)
template< class T >

const_where_expression<bool, const T>

    where( /* 见下文 */ mask, const T& value ) noexcept;
(6) (并行 TS v2)

构造新的 const_where_expressionwhere_expression

1-6) 从给定的掩码和值参数构造 where_expression

参数

1-4)
mask - simd_mask 对象
value - 到应用掩码于其上的对象的引用
5,6)
mask - bool 类型掩码
value - 到应用掩码于其上的标量的引用

返回值

构造的 const_where_expressionwhere_expression

注解

5,6) 使用掩码的实现定义类型,以之禁用从其他类型到 bool 的隐式转换。

示例